From b988c62b750c0f516f467840564a0e5a3095b213 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Mon, 19 Dec 2022 20:39:44 +0100 Subject: [PATCH] oops --- .../tests/proxy_list/test_select_custom_proxy.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/changedetectionio/tests/proxy_list/test_select_custom_proxy.py b/changedetectionio/tests/proxy_list/test_select_custom_proxy.py index 62c0f0e7..2f803f54 100644 --- a/changedetectionio/tests/proxy_list/test_select_custom_proxy.py +++ b/changedetectionio/tests/proxy_list/test_select_custom_proxy.py @@ -37,6 +37,12 @@ def test_select_custom(client, live_server): res = client.get(url_for("index")) assert b'Proxy Authentication Required' not in res.data + + + res = client.get( + url_for("preview_page", uuid="first"), + follow_redirects=True + ) # We should see something via proxy assert b'HEAD' in res.data