From d0919507f9d51f5abd163494557e21e8dfadc367 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Mon, 17 May 2010 10:30:00 +0000 Subject: Try to fix buildbot failures with old OpenSSLs. --- Lib/test/test_ssl.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 5086cc3..60b417e 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) -- cgit v0.12