From 2f9169529353102e3d17a6e45335730e7c1d5fbf Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Wed, 1 Nov 2023 17:36:53 +0100 Subject: [PATCH] fix call --- changedetectionio/tests/test_access_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/tests/test_access_control.py b/changedetectionio/tests/test_access_control.py index a76d9e50..b289cdd1 100644 --- a/changedetectionio/tests/test_access_control.py +++ b/changedetectionio/tests/test_access_control.py @@ -21,7 +21,7 @@ def test_check_access_control(app, client, live_server): assert b"1 Imported" in res.data wait_for_all_checks(client) - res = client.get(url_for("form_watch_checknow"), follow_redirects=True) + res = c.get(url_for("form_watch_checknow"), follow_redirects=True) assert b'1 watches queued for rechecking.' in res.data wait_for_all_checks(client)