diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-02-05 21:20:51 +0100 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-02-05 21:20:51 +0100 |
commit | da23259f992a5f962fa9f95acb6608c2ecada348 (patch) | |
tree | 83ad109c52a2392454666594c52e1bcd1d5a79d5 /Lib/test/test_httplib.py | |
parent | ca4220be1ff291fed1b6d1da4ebcf3eab7f1a2ca (diff) | |
download | cpython-git-da23259f992a5f962fa9f95acb6608c2ecada348.tar.gz |
Issue #17107: Test client-side SNI support in urllib.request thanks to the new server-side SNI support in the ssl module.
Initial patch by Daniel Black.
Diffstat (limited to 'Lib/test/test_httplib.py')
-rw-r--r-- | Lib/test/test_httplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py index 0ebd091c79..be2d77160c 100644 --- a/Lib/test/test_httplib.py +++ b/Lib/test/test_httplib.py @@ -703,7 +703,7 @@ class HTTPSTest(TestCase): def make_server(self, certfile): from test.ssl_servers import make_https_server - return make_https_server(self, certfile) + return make_https_server(self, certfile=certfile) def test_attributes(self): # simple test to check it's storing the timeout |