aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-04 18:13:40 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-04 18:13:40 -0600
commit2dd21fec484c85647d73145bd9957fd5326495c3 (patch)
tree36ca0d71787af7c8a94d06894ea2f10838b65177 /tests/conftest.py
parent3ae13fc662435d69c7d93e937a675059164a495c (diff)
downloadcryptography-2dd21fec484c85647d73145bd9957fd5326495c3.tar.gz
cryptography-2dd21fec484c85647d73145bd9957fd5326495c3.tar.bz2
cryptography-2dd21fec484c85647d73145bd9957fd5326495c3.zip
remove unneeded mark now that is_available is there
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 3ba2425d..0ddc3338 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -4,9 +4,7 @@ from cryptography.hazmat.backends.interfaces import (
HMACBackend, CipherBackend, HashBackend
)
-from .utils import (
- check_for_iface, check_backend_support, check_binding_available
-)
+from .utils import check_for_iface, check_backend_support
def pytest_generate_tests(metafunc):
@@ -22,4 +20,3 @@ def pytest_runtest_setup(item):
check_for_iface("cipher", CipherBackend, item)
check_for_iface("hash", HashBackend, item)
check_backend_support(item)
- check_binding_available(item)