Skip to content

Commit

Permalink
fixup! GateIO: Split asset.Futures into CoinM and USDT
Browse files Browse the repository at this point in the history
  • Loading branch information
gbjk committed Feb 13, 2025
1 parent 60e7e49 commit 74d949c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions exchanges/gateio/gateio_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -869,9 +869,8 @@ func TestGetAllFutureContracts(t *testing.T) {
t.Parallel()

for _, c := range []currency.Code{currency.BTC, currency.USDT} {
if _, err := g.GetAllFutureContracts(context.Background(), c); err != nil {
assert.Errorf(t, err, "GetAllFutureContracts %s should not error", c)
}
_, err := g.GetAllFutureContracts(context.Background(), c)
assert.NoErrorf(t, err, "GetAllFutureContracts %s should not error", c)
}
}

Expand Down

0 comments on commit 74d949c

Please sign in to comment.