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 407380f commit 582282bCopy full SHA for 582282b
1 file changed
Lib/test/test_ssl.py
@@ -839,8 +839,8 @@ def test_get_ciphers(self):
839
ctx = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
840
ctx.set_ciphers('AESGCM')
841
names = set(d['name'] for d in ctx.get_ciphers())
842
- self.assertIn('ECDHE-RSA-AES256-GCM-SHA384', names)
843
- self.assertIn('ECDHE-RSA-AES128-GCM-SHA256', names)
+ self.assertIn('AES256-GCM-SHA384', names)
+ self.assertIn('AES128-GCM-SHA256', names)
844
845
@skip_if_broken_ubuntu_ssl
846
def test_options(self):
0 commit comments