From a5742b3bbce0fb1642339a72d805e029c3d62413 Mon Sep 17 00:00:00 2001 From: Wade Dyck Date: Mon, 27 Dec 2021 11:26:49 -0700 Subject: [PATCH] Fixes a failing test_history due to changed log message. --- tests/data/test_history.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/data/test_history.py b/tests/data/test_history.py index d70d69080..351ae9919 100644 --- a/tests/data/test_history.py +++ b/tests/data/test_history.py @@ -148,8 +148,8 @@ def test_load_data_with_new_pair_1min(ohlcv_history_list, mocker, caplog, load_pair_history(datadir=tmpdir1, timeframe='1m', pair='MEME/BTC', candle_type=candle_type) assert file.is_file() assert log_has_re( - r'Download history data for pair: "MEME/BTC" \(0/1\), timeframe: 1m ' - r'and store in .*', caplog + r'Download history data for pair: "MEME/BTC" \(0/1\), timeframe: 1m, ' + r'candle type: spot and store in .*', caplog )