diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-02-05 20:20:51 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-02-05 20:20:51 (GMT) |
commit | da23259f992a5f962fa9f95acb6608c2ecada348 (patch) | |
tree | 83ad109c52a2392454666594c52e1bcd1d5a79d5 /Lib/test/test_ssl.py | |
parent | ca4220be1ff291fed1b6d1da4ebcf3eab7f1a2ca (diff) | |
download | cpython-da23259f992a5f962fa9f95acb6608c2ecada348.zip cpython-da23259f992a5f962fa9f95acb6608c2ecada348.tar.gz cpython-da23259f992a5f962fa9f95acb6608c2ecada348.tar.bz2 |
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_ssl.py')
-rw-r--r-- | Lib/test/test_ssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index febebaf..32b6131 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -1637,7 +1637,7 @@ else: def test_socketserver(self): """Using a SocketServer to create and manage SSL connections.""" - server = make_https_server(self, CERTFILE) + server = make_https_server(self, certfile=CERTFILE) # try to connect if support.verbose: sys.stdout.write('\n') |