chore: update test to reflect a fix in ccxt

This commit is contained in:
Matthias
2024-08-12 09:14:36 +02:00
parent 16d5d7b318
commit 88b754e38c

View File

@@ -106,9 +106,7 @@ class TestCCXTExchange:
assert isinstance(fees, list)
for fee in fees:
assert isinstance(fee, dict)
assert isinstance(fee["cost"], str)
# TODO: this should be a float!
# assert isinstance(fee["cost"], float)
assert isinstance(fee["cost"], float)
assert isinstance(fee["currency"], str)
else: