summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-01-07 20:29:45 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-01-07 20:29:45 (GMT)
commit8791d697e03c7ab08b146fb31aa7d06932a915b4 (patch)
tree05f1cdb17d5267099fb9be864a4b2ef1d72b692b /Lib/test
parentf78b78aed4c20cf0e32cfd75f9594f1fcf7e87e6 (diff)
downloadcpython-8791d697e03c7ab08b146fb31aa7d06932a915b4.zip
cpython-8791d697e03c7ab08b146fb31aa7d06932a915b4.tar.gz
cpython-8791d697e03c7ab08b146fb31aa7d06932a915b4.tar.bz2
fix assertions after ciphers were changed
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_ssl.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index 554f32c..3f1ba2f 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -3171,8 +3171,7 @@ else:
ciphers = stats['server_shared_ciphers'][0]
self.assertGreater(len(ciphers), 0)
for name, tls_version, bits in ciphers:
- self.assertIn("AES128", name.split("-"))
- self.assertEqual(bits, 128)
+ self.assertIn("RC4", name.split("-"))
def test_read_write_after_close_raises_valuerror(self):
context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)