From: Benjamin Peterson Date: Wed, 7 Jan 2015 17:33:51 +0000 (-0600) Subject: remove apparently wrong assertion about des bit size X-Git-Tag: v3.5.0a1~226 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e27a4213546bde6048c85d46321361e5e5c25b09;p=thirdparty%2FPython%2Fcpython.git remove apparently wrong assertion about des bit size --- diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index e27151c2e6af..79f1a43a7ffc 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)