Issue #22340: Fix Python 3 warnings in Python 2 tests
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index 351925e..eac994f 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -2365,7 +2365,8 @@
# now fetch the same data from the HTTPS server
url = 'https://%s:%d/%s' % (
HOST, server.port, os.path.split(CERTFILE)[1])
- f = urllib.urlopen(url)
+ with support.check_py3k_warnings():
+ f = urllib.urlopen(url)
try:
dlen = f.info().getheader("content-length")
if dlen and (int(dlen) > 0):