Merge pull request #12648 from hippocritical/develop

adjusted the error message of "more than 5 queries needed for exchange"
This commit is contained in:
Matthias
2025-12-23 13:22:58 +01:00
committed by GitHub
2 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -1012,7 +1012,7 @@ def test_validate_required_startup_candles(default_conf, mocker, caplog):
ex._ft_has["ohlcv_has_history"] = False
with pytest.raises(
OperationalException,
match=r"This strategy requires 2500.*, " r"which is more than the amount.*",
match=r"This strategy requires 2500.*, " r"which is more than .* the amount",
):
ex.validate_required_startup_candles(2500, "5m")