diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-09-26 15:32:08 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-09-26 15:32:08 -0400 |
commit | 854e49cab887122b9c140c5b1ccad4a9c221b743 (patch) | |
tree | ae9d2a7f25478065f1847502590071d3b3488430 /tests | |
parent | a295ac9d5a17d3f79a2d26d19aea673e5a3327fb (diff) | |
download | cryptography-854e49cab887122b9c140c5b1ccad4a9c221b743.tar.gz cryptography-854e49cab887122b9c140c5b1ccad4a9c221b743.tar.bz2 cryptography-854e49cab887122b9c140c5b1ccad4a9c221b743.zip |
fix the tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/backends/test_openssl.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index 5264ba55..abd707ca 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -17,9 +17,10 @@ from cryptography import utils from cryptography.exceptions import InternalError, _Reasons from cryptography.hazmat.backends.interfaces import RSABackend from cryptography.hazmat.backends.openssl.backend import ( - Backend, UnhandledOpenSSLError, backend + Backend, backend ) from cryptography.hazmat.backends.openssl.ec import _sn_to_elliptic_curve +from cryptography.hazmat.bindings.openssl.binding import UnhandledOpenSSLError from cryptography.hazmat.primitives import hashes, serialization from cryptography.hazmat.primitives.asymmetric import dsa, ec, padding from cryptography.hazmat.primitives.ciphers import ( |