Language fix "watches are rechecking." it actually puts them into an internal queue "watches are QUEUED for rechecking"

This commit is contained in:
dgtlmoon
2022-02-08 13:00:18 +01:00
parent a580c238b6
commit eb3dca3805
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ def test_check_basic_change_detection_functionality(client, live_server):
# Force recheck
res = client.get(url_for("api_watch_checknow"), follow_redirects=True)
assert b'1 watches are rechecking.' in res.data
assert b'1 watches are queued for rechecking.' in res.data
time.sleep(sleep_time_for_fetch_thread)