Skip to content

Commit

Permalink
Tiny test improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
cranktakular committed Oct 16, 2024
1 parent 5974421 commit 2a90b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exchanges/coinbasepro/coinbasepro_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ func TestUpdateOrderbook(t *testing.T) {
assert.ErrorIs(t, err, asset.ErrNotSupported)
_, err = c.UpdateOrderbook(context.Background(), currency.NewPairWithDelimiter("meow", "woof", "-"), asset.Spot)
assert.EqualValues(t, errInvalidProductID, err.Error())
resp, err := c.UpdateOrderbook(context.Background(), testPair, asset.Spot)
resp, err := c.UpdateOrderbook(context.Background(), testPair, asset.Futures)
assert.NoError(t, err)
assert.NotEmpty(t, resp, errExpectedNonEmpty)
}
Expand Down

0 comments on commit 2a90b5d

Please sign in to comment.