3
0

fix(crm): fix test prefix, s/sam/messaging

This commit is contained in:
Tit Petric 2019-02-05 15:29:33 +01:00
parent 3ff2e035ef
commit b8267f4a64
3 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ func (r *module) With(ctx context.Context, db *factory.DB) ModuleRepository {
}
}
// @todo: update to accepted DeletedAt column semantics from SAM
// @todo: update to accepted DeletedAt column semantics from Messaging
func (r *module) FindByID(id uint64) (mod *types.Module, err error) {
mod = &types.Module{}

View File

@ -72,7 +72,7 @@ func (r *record) With(ctx context.Context, db *factory.DB) RecordRepository {
}
}
// @todo: update to accepted DeletedAt column semantics from SAM
// @todo: update to accepted DeletedAt column semantics from Messaging
func (r *record) FindByID(id uint64) (*types.Record, error) {
mod := &types.Record{}

View File

@ -23,7 +23,7 @@ func TestMain(m *testing.M) {
// @todo this is a very optimistic initialization, make it more robust
godotenv.Load("../../.env")
prefix := "sam"
prefix := "crm"
dsn := ""
p := func(s string) string {