diff options
author | David Reid <dreid@dreid.org> | 2014-02-03 16:46:48 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2014-02-03 16:46:48 -0800 |
commit | ba5fcd97baf193259a156caa5b5cbc107ee46794 (patch) | |
tree | cf0243617ef483300973442a55e7a1fdc02ff1ff /tests/hazmat/backends/test_openssl.py | |
parent | 59ca2fc4a93ed398e5c2674b7c98a81ed95e0930 (diff) | |
parent | db80954cf1448f88fae78568dbd3d833da04054a (diff) | |
download | cryptography-ba5fcd97baf193259a156caa5b5cbc107ee46794.tar.gz cryptography-ba5fcd97baf193259a156caa5b5cbc107ee46794.tar.bz2 cryptography-ba5fcd97baf193259a156caa5b5cbc107ee46794.zip |
Merge pull request #536 from alex/prioritized-multi-backend
Initial work on a prioritized multibackend for which implements CipherBackend
Diffstat (limited to 'tests/hazmat/backends/test_openssl.py')
-rw-r--r-- | tests/hazmat/backends/test_openssl.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index 1e35322a..9f00364f 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -15,7 +15,6 @@ import pytest from cryptography import utils from cryptography.exceptions import UnsupportedAlgorithm, InternalError -from cryptography.hazmat.backends import default_backend from cryptography.hazmat.backends.openssl.backend import backend, Backend from cryptography.hazmat.primitives import interfaces from cryptography.hazmat.primitives.ciphers import Cipher @@ -40,9 +39,6 @@ class TestOpenSSL(object): def test_backend_exists(self): assert backend - def test_is_default(self): - assert backend == default_backend() - def test_openssl_version_text(self): """ This test checks the value of OPENSSL_VERSION_TEXT. |