Skip to content

Commit

Permalink
Merge pull request #24 from xiuxiuxar/fix-cancel-test
Browse files Browse the repository at this point in the history
Fix cancel_order test
  • Loading branch information
8ball030 authored Jul 17, 2024
2 parents 4e0281b + 124be57 commit d1ee222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ def test_cancel_order(
**TEST_ORDER,
)
assert order is not None
cancel_order = self.client.cancel_order(order['subAccountId'], order['productId'], order['id'])
cancel_order = self.client.cancel_order(order['productId'], order['id'], order['subAccountId'])
assert cancel_order is not None

def test_cancel_orders(self):
Expand Down

0 comments on commit d1ee222

Please sign in to comment.