test: update test of _rpc_pause after removal of specific fallback if bot already paused

This commit is contained in:
Axel-CH
2025-03-28 10:18:21 -04:00
parent 91ace759c5
commit 722d5b2319
3 changed files with 13 additions and 5 deletions

View File

@@ -816,7 +816,9 @@ def test_rpc_pause(mocker, default_conf) -> None:
freqtradebot.state = State.PAUSED
result = rpc._rpc_pause()
assert {"status": "paused, no entries will occur. Run /start to enable entries."} == result
assert {
"status": "paused, no more entries will occur from now. Run /start to enable entries."
} == result
def test_rpc_force_exit(default_conf, ticker, fee, mocker) -> None: