From 0cab0e8ac5aa1b995df0b0c5efcb6bb0ef72a7e8 Mon Sep 17 00:00:00 2001 From: matstedt Date: Fri, 23 Jan 2026 17:17:08 +0100 Subject: [PATCH] fix(tests): use myokx for non-futures list-exchanges check --- tests/commands/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/test_commands.py b/tests/commands/test_commands.py index 9c0cfaa1d..3f5e846c7 100644 --- a/tests/commands/test_commands.py +++ b/tests/commands/test_commands.py @@ -211,7 +211,7 @@ def test_list_exchanges(capsys): assert re.search(r"Exchanges available for Freqtrade.*", captured.out) assert re.search(r".*binance.*", captured.out) assert re.search(r"\bkrakenfutures\b", captured.out) - assert not re.search(r"\bkraken\b", captured.out) + assert not re.search(r"\bmyokx\b", captured.out) def test_list_timeframes(mocker, capsys):