Skip to content

Commit

Permalink
Remove http prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
tw4l committed May 24, 2024
1 parent 7d71e60 commit dd0be7e
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 @@ -32,8 +32,8 @@ def handle_error(self, request, client_address):
addr, cls.port = server.socket.getsockname()

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

def run():
Expand Down

0 comments on commit dd0be7e

Please sign in to comment.