diff options
Diffstat (limited to 'tests/hazmat/bindings/test_openssl.py')
-rw-r--r-- | tests/hazmat/bindings/test_openssl.py | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/hazmat/bindings/test_openssl.py b/tests/hazmat/bindings/test_openssl.py index 449e581e..9b0da67c 100644 --- a/tests/hazmat/bindings/test_openssl.py +++ b/tests/hazmat/bindings/test_openssl.py @@ -21,10 +21,7 @@ class TestOpenSSL(object): def test_crypto_lock_init(self): b = Binding() - if ( - b.lib.CRYPTOGRAPHY_OPENSSL_110_OR_GREATER and - not b.lib.CRYPTOGRAPHY_IS_LIBRESSL - ): + if b.lib.CRYPTOGRAPHY_OPENSSL_110_OR_GREATER: pytest.skip("Requires an older OpenSSL. Must be < 1.1.0") b.init_static_locks() @@ -79,10 +76,7 @@ class TestOpenSSL(object): def test_conditional_removal(self): b = Binding() - if ( - b.lib.CRYPTOGRAPHY_OPENSSL_110_OR_GREATER and - not b.lib.CRYPTOGRAPHY_IS_LIBRESSL - ): + if b.lib.CRYPTOGRAPHY_OPENSSL_110_OR_GREATER: assert b.lib.TLS_ST_OK else: with pytest.raises(AttributeError): |