Fix some test-errors in ccxt_compat

This commit is contained in:
Matthias 2020-12-23 15:29:39 +01:00
parent a6e6ce16b1
commit 2016eea212

View File

@ -100,6 +100,10 @@ class TestCCXTExchange():
assert len(l2['bids']) == val assert len(l2['bids']) == val
else: else:
next_limit = exchange.get_next_limit_in_list(val, exchange._ft_has['l2_limit_range']) next_limit = exchange.get_next_limit_in_list(val, exchange._ft_has['l2_limit_range'])
if next_limit > 200:
assert len(l2['asks']) > 200
assert len(l2['asks']) > 200
else:
assert len(l2['asks']) == next_limit assert len(l2['asks']) == next_limit
assert len(l2['asks']) == next_limit assert len(l2['asks']) == next_limit
@ -116,7 +120,7 @@ class TestCCXTExchange():
exchange, exchangename = exchange exchange, exchangename = exchange
pair = EXCHANGES[exchangename]['pair'] pair = EXCHANGES[exchangename]['pair']
assert exchange.get_fee(pair, 'limit', 'buy') > 0 < 1 assert 0 < exchange.get_fee(pair, 'limit', 'buy') < 1
assert exchange.get_fee(pair, 'limit', 'sell') > 0 < 1 assert 0 < exchange.get_fee(pair, 'limit', 'sell') < 1
assert exchange.get_fee(pair, 'market', 'buy') > 0 < 1 assert 0 < exchange.get_fee(pair, 'market', 'buy') < 1
assert exchange.get_fee(pair, 'market', 'sell') > 0 < 1 assert 0 < exchange.get_fee(pair, 'market', 'sell') < 1