diff --git a/changedetectionio/tests/util.py b/changedetectionio/tests/util.py index 8a980bd8..ed7269de 100644 --- a/changedetectionio/tests/util.py +++ b/changedetectionio/tests/util.py @@ -124,13 +124,12 @@ def extract_UUID_from_client(client): def wait_for_all_checks(client): # Loop waiting until done.. attempt = 0 - time.sleep(1) while attempt < 60: + time.sleep(1) res = client.get(url_for("index")) if not b'Checking now' in res.data: break logging.getLogger().info("Waiting for watch-list to not say 'Checking now'.. {}".format(attempt)) - time.sleep(1) attempt += 1 def live_server_setup(live_server):