From 8d85b9564284a66aa28a0cbb759090b777698e43 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 26 Mar 2017 11:07:31 -0400 Subject: Attempt to simplify the libressl checing (#3482) * Attempt to simplify the libressl checing * SHENANGINS * Attempted fix * More simplification --- tests/hazmat/backends/test_openssl.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'tests/hazmat/backends') diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index f6b57964..20c073a4 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -576,10 +576,7 @@ class TestGOSTCertificate(object): x509.load_der_x509_certificate, backend ) - if ( - backend._lib.CRYPTOGRAPHY_OPENSSL_LESS_THAN_102I or - backend._lib.CRYPTOGRAPHY_IS_LIBRESSL - ): + if backend._lib.CRYPTOGRAPHY_OPENSSL_LESS_THAN_102I: with pytest.raises(ValueError) as exc: cert.subject -- cgit v1.2.3