From daa5ccfc9305937c2eb33854a24502bb3a834d13 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Thu, 24 Oct 2024 19:02:28 +0200 Subject: [PATCH] Fix bad test --- changedetectionio/tests/test_notification.py | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/changedetectionio/tests/test_notification.py b/changedetectionio/tests/test_notification.py index 760c660e..0016acf4 100644 --- a/changedetectionio/tests/test_notification.py +++ b/changedetectionio/tests/test_notification.py @@ -429,24 +429,15 @@ def test_global_send_test_notification(client, live_server, measure_memory_usage follow_redirects=True ) - #2727 - be sure a test notification when there are zero watches works ( should all be deleted now) - - os.unlink("test-datastore/notification.txt") - - - ######### Test global/system settings + ######### Test global/system settings - When everything is deleted it should give a helpful error + # See #2727 res = client.post( url_for("ajax_callback_send_notification_test")+"?mode=global-settings", data={"notification_urls": test_notification_url}, follow_redirects=True ) + assert res.status_code == 400 + assert b"Error: You must have atleast one watch configured for 'test notification' to work" in res.data - assert res.status_code != 400 - assert res.status_code != 500 - # Give apprise time to fire - time.sleep(4) - with open("test-datastore/notification.txt", 'r') as f: - x = f.read() - assert 'change detection is cool 网站监测 内容更新了' in x