From 9e5c374c3ec9bf10255522e14faf77e1266a6af0 Mon Sep 17 00:00:00 2001 From: Tessa Walsh Date: Wed, 15 May 2024 11:39:36 -0400 Subject: [PATCH] Use http not https prefix --- test/test_capture_http_proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_capture_http_proxy.py b/test/test_capture_http_proxy.py index f0741603..0d2aa69f 100644 --- a/test/test_capture_http_proxy.py +++ b/test/test_capture_http_proxy.py @@ -30,7 +30,7 @@ def handle_error(self, request, client_address): addr, cls.port = server.socket.getsockname() cls.proxies = { - 'https': 'https://localhost:' + str(cls.port), + 'https': 'http://localhost:' + str(cls.port), 'http': 'http://localhost:' + str(cls.port), }