From 203255ea32d29ba9c5ce6876cc981991de02446e Mon Sep 17 00:00:00 2001 From: Tessa Walsh Date: Wed, 15 May 2024 11:31:06 -0400 Subject: [PATCH] Modify proxy to use http --- 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 bbc1bddb..e3773274 100644 --- a/test/test_capture_http_proxy.py +++ b/test/test_capture_http_proxy.py @@ -32,7 +32,7 @@ def handle_error(self, request, client_address): print(f"port: {cls.port}", flush=True) cls.proxies = { - 'https': 'https://localhost:' + str(cls.port), + 'https': 'http://localhost:' + str(cls.port), 'http': 'http://localhost:' + str(cls.port), }