mirror of https://github.com/python/cpython
Issue 27866: relax get_cipher() test even more. Gentoo buildbot has no ECDHE
This commit is contained in:
parent
407380f63f
commit
582282b7d0
|
@ -839,8 +839,8 @@ class ContextTests(unittest.TestCase):
|
|||
ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
|
||||
ctx.set_ciphers('AESGCM')
|
||||
names = set(d['name'] for d in ctx.get_ciphers())
|
||||
self.assertIn('ECDHE-RSA-AES256-GCM-SHA384', names)
|
||||
self.assertIn('ECDHE-RSA-AES128-GCM-SHA256', names)
|
||||
self.assertIn('AES256-GCM-SHA384', names)
|
||||
self.assertIn('AES128-GCM-SHA256', names)
|
||||
|
||||
@skip_if_broken_ubuntu_ssl
|
||||
def test_options(self):
|
||||
|
|
Loading…
Reference in New Issue