Fix reversed assertRegex checks in test_ssl. (#117351)

This commit is contained in:
Gregory P. Smith 2024-03-28 17:58:37 -07:00 committed by GitHub
parent 8eec7ed714
commit 2e9be80c99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -3867,7 +3867,7 @@ class ThreadedTests(unittest.TestCase):
server_hostname=hostname) as s:
with self.assertRaises(ssl.SSLError) as e:
s.connect((HOST, server.port))
self.assertRegex("(alert|ALERT)", str(e.exception))
self.assertRegex(str(e.exception), "(alert|ALERT)")
@requires_tls_version('SSLv3')
def test_min_max_version_sslv3(self):
@ -4182,7 +4182,7 @@ class ThreadedTests(unittest.TestCase):
# Allow for flexible libssl error messages.
regex = "(SSLV3_ALERT_HANDSHAKE_FAILURE|NO_PRIVATE_VALUE)"
self.assertRegex(regex, cm.exception.reason)
self.assertRegex(cm.exception.reason, regex)
self.assertEqual(catch.unraisable.exc_type, ZeroDivisionError)
def test_sni_callback_wrong_return_type(self):