Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tw4l committed May 22, 2024
1 parent e2c62ed commit b6a374e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/test_capture_http_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ def handle_error(self, request, client_address):

print(f"cls.port: {cls.port}", flush=True)

cls.proxies = {'https': 'htts://proxy.com:' + str(cls.port),
'http': 'http://proxy.com:' + str(cls.port)
}
cls.proxies = {
'https': 'https://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 b6a374e

Please sign in to comment.