diff options
Diffstat (limited to 'tests')
-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 b9db3071..52bee7b3 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -676,4 +676,4 @@ class TestGOSTCertificate(object): # We assert on the message in this case because if the certificate # fails to load it will also raise a ValueError and this test could # erroneously pass. - assert exc.value.message == "Unsupported ASN1 string type. Type: 18" + assert str(exc.value) == "Unsupported ASN1 string type. Type: 18" |