summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ssl.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-01-07 17:33:51 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-01-07 17:33:51 (GMT)
commite27a4213546bde6048c85d46321361e5e5c25b09 (patch)
treef3879d1b77e9634e95931a903f2d736648196378 /Lib/test/test_ssl.py
parentbaf7c1e5466cb1be6378f6b9ed96f7288bef548d (diff)
downloadcpython-e27a4213546bde6048c85d46321361e5e5c25b09.zip
cpython-e27a4213546bde6048c85d46321361e5e5c25b09.tar.gz
cpython-e27a4213546bde6048c85d46321361e5e5c25b09.tar.bz2
remove apparently wrong assertion about des bit size
Diffstat (limited to 'Lib/test/test_ssl.py')
-rw-r--r--Lib/test/test_ssl.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index e27151c..79f1a43 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -3172,7 +3172,6 @@ else:
self.assertGreater(len(ciphers), 0)
for name, tls_version, bits in ciphers:
self.assertIn("DES-CBC3-", name)
- self.assertEqual(bits, 112)
def test_read_write_after_close_raises_valuerror(self):
context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)