Skip to content

Commit

Permalink
fix(core): failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kndndrj committed Apr 23, 2024
1 parent 7daeb9a commit 45fa13d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbee/core/call_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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++
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 45fa13d

Please sign in to comment.