Skip to content

Commit

Permalink
fixup! Huobi: assertify tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gbjk committed Jan 11, 2025
1 parent 52dfbfd commit bff1ad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exchanges/huobi/huobi_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@ func TestUpdateAccountInfo(t *testing.T) {
sharedtestvalues.SkipTestIfCredentialsUnset(t, h, canManipulateRealOrders)
for _, a := range []asset.Item{asset.Spot, asset.CoinMarginedFutures, asset.Futures} {
_, err := h.UpdateAccountInfo(context.Background(), a)
require.NoErrorf(t, err, "UpdateAccountInfo must not error for asset %s; Spot and Futures have separate api keys. Please ensure that the correct keys are provided", a)
assert.NoErrorf(t, err, "UpdateAccountInfo should not error for asset %s", a)
}
}

Expand Down

0 comments on commit bff1ad3

Please sign in to comment.