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

This commit is contained in:
Matthias Klose 2016-06-12 23:40:00 -07:00
parent 6e9a96be9e
commit f7c562439b
1 changed files with 2 additions and 1 deletions

View File

@ -821,7 +821,8 @@ class ContextTests(unittest.TestCase):
self.assertEqual(ssl.OP_ALL | ssl.OP_NO_TLSv1 | ssl.OP_NO_SSLv3,
ctx.options)
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:
with self.assertRaises(ValueError):
ctx.options = 0