Skip to content

Commit

Permalink
Add http prefix back to cls.proxies
Browse files Browse the repository at this point in the history
  • Loading branch information
tw4l committed May 24, 2024
1 parent 7090b43 commit dd58a58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_capture_http_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def handle_error(self, request, client_address):
print(f"cls.port: {cls.port}", flush=True)

cls.proxies = {
'https': 'proxy.com:' + str(cls.port),
'http': 'proxy.com:' + str(cls.port)
'https': 'http://proxy.com:' + str(cls.port),
'http': 'http://proxy.com:' + str(cls.port)
}

print(f"cls.proxies: {cls.proxies}", flush=True)
Expand Down

0 comments on commit dd58a58

Please sign in to comment.