summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2016-01-16 01:29:45 (GMT)
committerGregory P. Smith <greg@krypto.org>2016-01-16 01:29:45 (GMT)
commitc7b05a409d2835fa03acb5b7440f5551e725ec3d (patch)
treecaabc7326f207993236b6a1ff6add2d5fef35f51 /Lib
parent3f2240ccb6841576fe2366c71fb8b3b1569906f5 (diff)
downloadcpython-c7b05a409d2835fa03acb5b7440f5551e725ec3d.zip
cpython-c7b05a409d2835fa03acb5b7440f5551e725ec3d.tar.gz
cpython-c7b05a409d2835fa03acb5b7440f5551e725ec3d.tar.bz2
Make the error message regex more lenient so that it matches both
"certificate verify failed " and "CERTIFICATE_VERIFY_FAILED " as some SSL libraries use different text than OpenSSL.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_asyncio/test_events.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py
index f174604..e72b86e 100644
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -999,7 +999,7 @@ class EventLoopTestsMixin:
with mock.patch.object(self.loop, 'call_exception_handler'):
with test_utils.disable_logger():
with self.assertRaisesRegex(ssl.SSLError,
- 'certificate verify failed '):
+ '(?i)certificate.verify.failed '):
self.loop.run_until_complete(f_c)
# execute the loop to log the connection error
@@ -1033,7 +1033,7 @@ class EventLoopTestsMixin:
with mock.patch.object(self.loop, 'call_exception_handler'):
with test_utils.disable_logger():
with self.assertRaisesRegex(ssl.SSLError,
- 'certificate verify failed '):
+ '(?i)certificate.verify.failed '):
self.loop.run_until_complete(f_c)
# execute the loop to log the connection error