Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff087fb commit e46a672Copy full SHA for e46a672
1 file changed
Lib/test/test_ssl.py
@@ -2956,6 +2956,8 @@ def test_ecc_cert(self):
2956
cipher = s.cipher()[0].split('-')
2957
self.assertTrue(cipher[:2], ('ECDHE', 'ECDSA'))
2958
2959
+ @unittest.skipUnless(IS_OPENSSL_3_0_0,
2960
+ "test requires RFC 5280 check added in OpenSSL 3.0+")
2961
def test_verify_strict(self):
2962
# verification fails by default, since the server cert is non-conforming
2963
client_context = ssl.create_default_context()
0 commit comments