From 1e410feed1515fb984ce72f953ad108f354bd292 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 13 Aug 2024 07:33:13 +0200 Subject: [PATCH] test: fix missing test arg --- tests/commands/test_commands.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/commands/test_commands.py b/tests/commands/test_commands.py index 5332014d2..c55126db1 100644 --- a/tests/commands/test_commands.py +++ b/tests/commands/test_commands.py @@ -1730,13 +1730,14 @@ def test_start_list_trades_data(testdatadir, capsys): "--datadir", str(testdatadir), "--trades", - "--show-timerange", + "--trading-mode", + "futures", ] pargs = get_args(args) pargs["config"] = None start_list_data(pargs) captured = capsys.readouterr() - assert "Found trades data for 0 pair." in captured.out + assert "Found trades data for 0 pairs." in captured.out @pytest.mark.usefixtures("init_persistence")