From c854cef3138acfe79dc838a4a274a5e31f6a1239 Mon Sep 17 00:00:00 2001 From: Stefano Ariestasia Date: Sat, 27 Jan 2024 18:12:19 +0900 Subject: [PATCH] fix precommit --- tests/plugins/test_pairlist.py | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/tests/plugins/test_pairlist.py b/tests/plugins/test_pairlist.py index b2aa2b8f0..0f50ec165 100644 --- a/tests/plugins/test_pairlist.py +++ b/tests/plugins/test_pairlist.py @@ -1515,40 +1515,39 @@ def test_FullTradesFilter(mocker, default_conf_usdt, fee, caplog) -> None: assert log_has_re(r'Whitelist with 0 pairs: \[]', caplog) - def test_MarketCapPairList_filter(mocker, default_conf_usdt): mock_response = MagicMock() mock_response.json.return_value = [ { - "symbol": "btc", + "symbol": "btc", }, { - "symbol": "eth", + "symbol": "eth", }, { - "symbol": "usdt", + "symbol": "usdt", }, { - "symbol": "bnb", + "symbol": "bnb", }, { - "symbol": "sol", + "symbol": "sol", }, { - "symbol": "xrp", + "symbol": "xrp", }, { - "symbol": "usdc", + "symbol": "usdc", }, { - "symbol": "steth", + "symbol": "steth", }, { - "symbol": "ada", + "symbol": "ada", }, { - "symbol": "avax", + "symbol": "avax", } ]