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):