Adjust tests to InternalDB constructor

This commit is contained in:
arberkatellari
2025-04-07 17:15:24 +02:00
committed by Dan Christian Bogos
parent 0e5c5a9e60
commit 5463eb61c6
102 changed files with 3295 additions and 1154 deletions

View File

@@ -290,7 +290,10 @@ func TestATExecute22(t *testing.T) {
Limit: 2,
},
}
db := NewInternalDB(nil, nil, true, false, cfg.DataDbCfg().Items)
db, dErr := NewInternalDB(nil, nil, true, nil, cfg.DataDbCfg().Items)
if dErr != nil {
t.Error(dErr)
}
dm := NewDataManager(db, cfg.CacheCfg(), nil)
at := &ActionTrigger{
ID: "STANDARD_TRIGGER",