From 5af4147eb37451072848c415423cde87f0262fe9 Mon Sep 17 00:00:00 2001 From: matstedt Date: Mon, 19 Jan 2026 14:49:59 +0100 Subject: [PATCH] tests: adjust list-exchanges futures assertions for krakenfutures --- tests/commands/test_commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/commands/test_commands.py b/tests/commands/test_commands.py index 7deec18ca..9c0cfaa1d 100644 --- a/tests/commands/test_commands.py +++ b/tests/commands/test_commands.py @@ -210,7 +210,8 @@ def test_list_exchanges(capsys): captured = capsys.readouterr() assert re.search(r"Exchanges available for Freqtrade.*", captured.out) assert re.search(r".*binance.*", captured.out) - assert not re.search(r".*kraken.*", captured.out) + assert re.search(r"\bkrakenfutures\b", captured.out) + assert not re.search(r"\bkraken\b", captured.out) def test_list_timeframes(mocker, capsys):