From 91f0d02129da29a5b59fba0699d5e25020df76fa Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Wed, 28 Jun 2023 09:16:08 +0200 Subject: [PATCH] shoudl be 1 s to stop problems with history index --- changedetectionio/tests/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/tests/util.py b/changedetectionio/tests/util.py index 45ab204b3..13e3fff9d 100644 --- a/changedetectionio/tests/util.py +++ b/changedetectionio/tests/util.py @@ -107,7 +107,7 @@ def wait_for_all_checks(client): attempt=0 time.sleep(0.1) while attempt < 60: - time.sleep(0.5) + time.sleep(1) res = client.get(url_for("index")) if not b'Checking now' in res.data: break