Remove duplicate binance test

The same test exists in test_exchange, but for most exchanges.
This commit is contained in:
Matthias
2023-01-13 07:11:44 +01:00
parent 0d1172ca43
commit 0be0ef9e77
2 changed files with 1 additions and 13 deletions

View File

@@ -3957,7 +3957,7 @@ def test_validate_trading_mode_and_margin_mode(
@pytest.mark.parametrize("exchange_name,trading_mode,ccxt_config", [
("binance", "spot", {}),
("binance", "margin", {"options": {"defaultType": "margin"}}),
("binance", "futures", {"options": {"defaultType": "future"}}),
("binance", "futures", {"options": {"defaultType": "swap"}}),
("bybit", "spot", {"options": {"defaultType": "spot"}}),
("bybit", "futures", {"options": {"defaultType": "linear"}}),
("gateio", "futures", {"options": {"defaultType": "swap"}}),