Slightly reduce verbosity when reload_conf is issued

part of #6095
This commit is contained in:
Matthias
2021-12-23 20:33:13 +01:00
parent 9a9cc31d83
commit 61dbb6206f
2 changed files with 6 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ def test_worker_stopped(mocker, default_conf, caplog) -> None:
worker.freqtrade.state = State.STOPPED
state = worker._worker(old_state=State.RUNNING)
assert state is State.STOPPED
assert log_has('Changing state to: STOPPED', caplog)
assert log_has('Changing state from RUNNING to: STOPPED', caplog)
assert mock_throttle.call_count == 1