From 7fe23ad8c9cf76c6a0a9ce18020b143540e3753b Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 18 Aug 2024 13:15:10 +0200 Subject: [PATCH] chore: add alias_for to tests --- tests/rpc/test_rpc_apiserver.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/rpc/test_rpc_apiserver.py b/tests/rpc/test_rpc_apiserver.py index 02b8729a6..4f5ef7860 100644 --- a/tests/rpc/test_rpc_apiserver.py +++ b/tests/rpc/test_rpc_apiserver.py @@ -2156,6 +2156,7 @@ def test_api_exchanges(botclient): "comment": "", "dex": False, "is_alias": False, + "alias_for": None, "trade_modes": [ {"trading_mode": "spot", "margin_mode": ""}, {"trading_mode": "futures", "margin_mode": "isolated"}, @@ -2171,6 +2172,7 @@ def test_api_exchanges(botclient): "dex": False, "comment": "", "is_alias": False, + "alias_for": None, "trade_modes": [{"trading_mode": "spot", "margin_mode": ""}], } waves = [x for x in response["exchanges"] if x["classname"] == "wavesexchange"][0] @@ -2182,6 +2184,7 @@ def test_api_exchanges(botclient): "dex": True, "comment": ANY, "is_alias": False, + "alias_for": None, "trade_modes": [{"trading_mode": "spot", "margin_mode": ""}], }