Fix line length

This commit is contained in:
Matthias 2022-08-21 18:07:41 +02:00
parent f6d832c6d9
commit 2dc34779d5
1 changed files with 2 additions and 1 deletions

View File

@ -2352,7 +2352,8 @@ def test_fetch_l2_order_book(default_conf, mocker, order_book_l2, exchange_name)
order_book = exchange.fetch_l2_order_book(pair='ETH/BTC', limit=val)
assert api_mock.fetch_l2_order_book.call_args_list[0][0][0] == 'ETH/BTC'
# Not all exchanges support all limits for orderbook
if not exchange.get_option('l2_limit_range') or val in exchange.get_option('l2_limit_range'):
if (not exchange.get_option('l2_limit_range')
or val in exchange.get_option('l2_limit_range')):
assert api_mock.fetch_l2_order_book.call_args_list[0][0][1] == val
else:
next_limit = exchange.get_next_limit_in_list(val, exchange.get_option('l2_limit_range'))