test_get_maintenance_ratio_and_amt_gateio removed commented test that returns None

This commit is contained in:
Sam Germain 2022-01-31 13:18:31 -06:00
parent 43db4c34d1
commit 8b9abd0051

View File

@ -34,7 +34,6 @@ def test_validate_order_types_gateio(default_conf, mocker):
@pytest.mark.parametrize('pair,mm_ratio', [ @pytest.mark.parametrize('pair,mm_ratio', [
("ETH/USDT:USDT", 0.005), ("ETH/USDT:USDT", 0.005),
("ADA/USDT:USDT", 0.003), ("ADA/USDT:USDT", 0.003),
# ("DOGE/USDT:USDT", None),
]) ])
def test_get_maintenance_ratio_and_amt_gateio(default_conf, mocker, pair, mm_ratio): def test_get_maintenance_ratio_and_amt_gateio(default_conf, mocker, pair, mm_ratio):
api_mock = MagicMock() api_mock = MagicMock()
@ -61,15 +60,6 @@ def test_get_maintenance_ratio_and_amt_gateio(default_conf, mocker, pair, mm_rat
'id': 'ADA_USDT', 'id': 'ADA_USDT',
'symbol': 'ADA/USDT: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',
# }
} }
) )
) )