A few more minor fixes

This commit is contained in:
Matthias
2024-05-12 17:58:28 +02:00
parent a9732c6195
commit 9d6e4ae67d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -223,7 +223,7 @@ def test_extract_data_and_train_model_Classifiers(mocker, freqai_conf, model):
model_file_extension = ".zip"
else:
raise Exception(
f"Unsupported model type: {freqai.dd.model_type}," f" can't assign model_file_extension"
f"Unsupported model type: {freqai.dd.model_type}, can't assign model_file_extension"
)
assert Path(
+1 -1
View File
@@ -114,7 +114,7 @@ def test_fetch_pairlist_timeout_keep_last_pairlist(mocker, rpl_config, caplog):
pairlist_url = rpl_config["pairlists"][0]["pairlist_url"]
pairs, _time_elapsed = remote_pairlist.fetch_pairlist()
assert log_has(f"Error: Was not able to fetch pairlist from: " f"{pairlist_url}", caplog)
assert log_has(f"Error: Was not able to fetch pairlist from: {pairlist_url}", caplog)
assert log_has("Keeping last fetched pairlist", caplog)
assert pairs == ["BTC/USDT", "ETH/USDT", "LTC/USDT"]