From 45fa13dd088bce970badfe829554f5365b69bfc5 Mon Sep 17 00:00:00 2001 From: Andrej Kenda Date: Tue, 23 Apr 2024 20:47:43 +0200 Subject: [PATCH] fix(core): failing tests --- dbee/core/call_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbee/core/call_test.go b/dbee/core/call_test.go index 8f2477a..f95c2c5 100644 --- a/dbee/core/call_test.go +++ b/dbee/core/call_test.go @@ -30,7 +30,7 @@ func TestCall_Success(t *testing.T) { } eventIndex := 0 - call := connection.Execute("", func(state core.CallState, c *core.Call) { + call := connection.Execute("_", func(state core.CallState, c *core.Call) { // make sure events were in order r.Equal(expectedEvents[eventIndex], state) eventIndex++ @@ -160,7 +160,7 @@ func TestCall_Archive(t *testing.T) { )) r.NoError(err) - call := connection.Execute("", nil) + call := connection.Execute("_", nil) // wait for call to finish select {