From 8b9abd0051691b6c4dfa6f57c994333ee83fc7f8 Mon Sep 17 00:00:00 2001 From: Sam Germain Date: Mon, 31 Jan 2022 13:18:31 -0600 Subject: [PATCH] test_get_maintenance_ratio_and_amt_gateio removed commented test that returns None --- tests/exchange/test_gateio.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/exchange/test_gateio.py b/tests/exchange/test_gateio.py index 96ae37598..a4d91c35c 100644 --- a/tests/exchange/test_gateio.py +++ b/tests/exchange/test_gateio.py @@ -34,7 +34,6 @@ def test_validate_order_types_gateio(default_conf, mocker): @pytest.mark.parametrize('pair,mm_ratio', [ ("ETH/USDT:USDT", 0.005), ("ADA/USDT:USDT", 0.003), - # ("DOGE/USDT:USDT", None), ]) def test_get_maintenance_ratio_and_amt_gateio(default_conf, mocker, pair, mm_ratio): api_mock = MagicMock() @@ -61,15 +60,6 @@ def test_get_maintenance_ratio_and_amt_gateio(default_conf, mocker, pair, mm_rat 'id': 'ADA_USDT', 'symbol': 'ADA/USDT:USDT', }, - # 'DOGE/USDT:USDT': { - # 'taker': 0.0000075, - # 'maker': -0.0000025, - # 'info': { - # 'nonmaintenance_rate': '0.003', - # }, - # 'id': 'DOGE_USDT', - # 'symbol': 'DOGE/USDT:USDT', - # } } ) )