Kaydet (Commit) f7c56243 authored tarafından Matthias Klose's avatar Matthias Klose

Issue #26867: Ubuntu's openssl OP_NO_SSLv3 is forced on by default; fix test.

üst 6e9a96be
...@@ -821,7 +821,8 @@ class ContextTests(unittest.TestCase): ...@@ -821,7 +821,8 @@ class ContextTests(unittest.TestCase):
self.assertEqual(ssl.OP_ALL | ssl.OP_NO_TLSv1 | ssl.OP_NO_SSLv3, self.assertEqual(ssl.OP_ALL | ssl.OP_NO_TLSv1 | ssl.OP_NO_SSLv3,
ctx.options) ctx.options)
ctx.options = 0 ctx.options = 0
self.assertEqual(0, ctx.options) # Ubuntu has OP_NO_SSLv3 forced on by default
self.assertEqual(0, ctx.options & ~ssl.OP_NO_SSLv3)
else: else:
with self.assertRaises(ValueError): with self.assertRaises(ValueError):
ctx.options = 0 ctx.options = 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment