From 48c6cb1805def2a290e1a7c36aa29719c34c5382 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Tue, 4 Jun 2024 11:47:18 +0200 Subject: [PATCH] Adding small delay --- changedetectionio/tests/smtp/test_notification_smtp.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changedetectionio/tests/smtp/test_notification_smtp.py b/changedetectionio/tests/smtp/test_notification_smtp.py index 92a2fa82..2ab92b4f 100644 --- a/changedetectionio/tests/smtp/test_notification_smtp.py +++ b/changedetectionio/tests/smtp/test_notification_smtp.py @@ -71,6 +71,8 @@ def test_check_notification_email_formats_default_HTML(client, live_server): wait_for_all_checks(client) set_longer_modified_response() + time.sleep(2) + client.get(url_for("form_watch_checknow"), follow_redirects=True) wait_for_all_checks(client) @@ -135,6 +137,7 @@ def test_check_notification_email_formats_default_Text_override_HTML(client, liv wait_for_all_checks(client) set_longer_modified_response() + time.sleep(2) client.get(url_for("form_watch_checknow"), follow_redirects=True) wait_for_all_checks(client)