summaryrefslogtreecommitdiff
path: root/Lib/test/test_ssl.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-09-22 09:37:56 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-09-22 09:37:56 +0000
commit463ef2b3cf4ac4555fca7de1e671d179e63909b4 (patch)
treef72315f6460176480bb6d46950e50f22dd5b5c5c /Lib/test/test_ssl.py
parentbb8b1cb6af830b40f9be398d1e1bf8bdca772140 (diff)
downloadcpython-git-463ef2b3cf4ac4555fca7de1e671d179e63909b4.tar.gz
Fix references to Python 3’s socketserver (lowercase) module
Diffstat (limited to 'Lib/test/test_ssl.py')
-rw-r--r--Lib/test/test_ssl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index 0f4faa09bd..f162c6eee6 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -2661,7 +2661,7 @@ else:
s.close()
def test_socketserver(self):
- """Using a SocketServer to create and manage SSL connections."""
+ """Using socketserver to create and manage SSL connections."""
server = make_https_server(self, certfile=CERTFILE)
# try to connect
if support.verbose: