diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-09-22 10:22:54 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-09-22 11:22:54 -0400 |
commit | 8b8d51b752729f7237bb51274ccf158cbb4cfce0 (patch) | |
tree | 171da9fb53afa52bcd92b1e9125c743c85f5153f /tests/hazmat/backends/test_openssl.py | |
parent | eba71712349f275bec51e3176c51ecbfa883e066 (diff) | |
download | cryptography-8b8d51b752729f7237bb51274ccf158cbb4cfce0.tar.gz cryptography-8b8d51b752729f7237bb51274ccf158cbb4cfce0.tar.bz2 cryptography-8b8d51b752729f7237bb51274ccf158cbb4cfce0.zip |
1.0.2i changed the way COMP_METHOD is exported if NO_COMP is set (#3162)
* 1.0.2i changed the way COMP_METHOD is exported if NO_COMP is set
* add a comment explaining why we changed this
* 1.0.2i handles NUMERICSTRING properly now so need only test < 1.0.2i
* needs to be visible
Diffstat (limited to 'tests/hazmat/backends/test_openssl.py')
-rw-r--r-- | tests/hazmat/backends/test_openssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index bf794c3a..db3c19b8 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -729,7 +729,7 @@ class TestGOSTCertificate(object): backend ) if ( - not backend._lib.CRYPTOGRAPHY_OPENSSL_110_OR_GREATER or + backend._lib.CRYPTOGRAPHY_OPENSSL_LESS_THAN_102I or backend._lib.CRYPTOGRAPHY_IS_LIBRESSL ): with pytest.raises(ValueError) as exc: |