From 162a0fd054220158af02aedd2668f972f40d2695 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toma=C5=BE=20Jerman?= Date: Wed, 24 May 2023 12:58:23 +0200 Subject: [PATCH] Fix failing store test --- server/store/tests/automation_sessions_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/store/tests/automation_sessions_test.go b/server/store/tests/automation_sessions_test.go index 87d5cf14d..747a9155a 100644 --- a/server/store/tests/automation_sessions_test.go +++ b/server/store/tests/automation_sessions_test.go @@ -115,7 +115,7 @@ func testAutomationSessions(t *testing.T, s store.AutomationSessions) { req.Len(set, 1) // we've deleted one // find all prefixed - set, f, err = s.SearchAutomationSessions(ctx, types.SessionFilter{WorkflowID: []uint64{1001}}) + set, f, err = s.SearchAutomationSessions(ctx, types.SessionFilter{WorkflowID: id.Strings(1001)}) req.NoError(err) req.Len(set, 4)