From: Antoine Pitrou Date: Mon, 17 May 2010 10:30:00 +0000 (+0000) Subject: Try to fix buildbot failures with old OpenSSLs. X-Git-Tag: v3.2a1~775 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0919507f9d51f5abd163494557e21e8dfadc367;p=python Try to fix buildbot failures with old OpenSSLs. --- diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 5086cc3ad3..60b417e6dd 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -217,6 +217,7 @@ class ContextTests(unittest.TestCase): with self.assertRaisesRegexp(ssl.SSLError, "PEM lib"): ctx.load_cert_chain(EMPTYCERT) # Separate key and cert + ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1) ctx.load_cert_chain(ONLYCERT, ONLYKEY) ctx.load_cert_chain(certfile=ONLYCERT, keyfile=ONLYKEY) ctx.load_cert_chain(certfile=BYTES_ONLYCERT, keyfile=BYTES_ONLYKEY) @@ -227,6 +228,7 @@ class ContextTests(unittest.TestCase): with self.assertRaisesRegexp(ssl.SSLError, "PEM lib"): ctx.load_cert_chain(certfile=ONLYKEY, keyfile=ONLYCERT) # Mismatching key and cert + ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1) with self.assertRaisesRegexp(ssl.SSLError, "key values mismatch"): ctx.load_cert_chain(CERTFILE, ONLYKEY)