include the Database in context

This commit is contained in:
Alfred Kamanda 2024-10-21 09:22:07 +03:00
parent 9f562fe53e
commit 415c807464
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -25,6 +25,7 @@ var (
func TestEngine(sessionId string) (engine.Engine, func(), chan bool) {
ctx := context.Background()
ctx = context.WithValue(ctx, "SessionId", sessionId)
ctx = context.WithValue(ctx, "Database", "gdbm")
pfp := path.Join(scriptDir, "pp.csv")
var eventChannel = make(chan bool)