Skip to content

Commit

Permalink
Fixed failing test for assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
sacOO7 committed Nov 22, 2023
1 parent bf8e196 commit 5865513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ably/realtime_conn_spec_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2170,7 +2170,7 @@ func TestRealtimeConn_RTN14g(t *testing.T) {
"expected status 400 got %v", c.Connection.ErrorReason().StatusCode)

// we make sure the connection is closed
assert.Equal(t, 1, ls.closed.Load(), "expected 1 got %v", ls.closed.Load())
assert.Equal(t, int64(1), ls.closed.Load(), "expected 1 got %v", ls.closed.Load())
})
}

Expand Down

0 comments on commit 5865513

Please sign in to comment.