diff options
author | michael-hart <michael.hart1994@gmail.com> | 2014-09-26 00:32:25 +0100 |
---|---|---|
committer | michael-hart <michael.hart1994@gmail.com> | 2014-09-26 00:32:25 +0100 |
commit | cd76c42245efd4dd4c779db28fde7de467493e13 (patch) | |
tree | b9b6afc2d228fd5098c02dd077ab7ef7e914a00a /tests/hazmat/backends/test_openssl.py | |
parent | a3204baf9bcfd2288d049c4f27e75c535b4397ed (diff) | |
download | cryptography-cd76c42245efd4dd4c779db28fde7de467493e13.tar.gz cryptography-cd76c42245efd4dd4c779db28fde7de467493e13.tar.bz2 cryptography-cd76c42245efd4dd4c779db28fde7de467493e13.zip |
Added all changes lost in merge reset
Diffstat (limited to 'tests/hazmat/backends/test_openssl.py')
-rw-r--r-- | tests/hazmat/backends/test_openssl.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index cf70f109..d4c5e2e7 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -473,6 +473,8 @@ class TestOpenSSLSerialisationWithOpenSSL(object): key = pretend.stub(type="unsupported") with raises_unsupported_algorithm(None): backend._evp_pkey_to_private_key(key) + with raises_unsupported_algorithm(None): + backend._evp_pkey_to_public_key(key) def test_very_long_pem_serialization_password(self): password = "x" * 1024 |