From 9a485b30ee465d66ef9e6bb17ca721a1f9c218a7 Mon Sep 17 00:00:00 2001 From: Tomas Tomecek Date: Tue, 1 Nov 2016 11:52:25 +0100 Subject: [PATCH] ssl,test: OpenSSL may not support ssl2 Fixes #1265 Signed-off-by: Tomas Tomecek --- tests/unit/ssladapter_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit/ssladapter_test.py b/tests/unit/ssladapter_test.py index 2ad1cad1..8c905cf5 100644 --- a/tests/unit/ssladapter_test.py +++ b/tests/unit/ssladapter_test.py @@ -24,7 +24,8 @@ class SSLAdapterTest(base.BaseTestCase): ssl_context = ssladapter.urllib3.util.ssl_.create_urllib3_context() assert ssl_context.options & OP_NO_SSLv3 - assert ssl_context.options & OP_NO_SSLv2 + # if OpenSSL is compiled without SSL2 support, OP_NO_SSLv2 will be 0 + assert not bool(OP_NO_SSLv2) or ssl_context.options & OP_NO_SSLv2 assert not ssl_context.options & OP_NO_TLSv1