aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2013-10-27 16:52:33 -0400
committerDonald Stufft <donald@stufft.io>2013-10-28 08:37:33 -0400
commitce0d781707979ccb7f6983601c5ccb25d2354582 (patch)
treef6eab1903394ead5b86d8f05274f43703f5d4dee /tests/conftest.py
parentf04317ae24441082279ea73ccca0a6630c33cc86 (diff)
downloadcryptography-ce0d781707979ccb7f6983601c5ccb25d2354582.tar.gz
cryptography-ce0d781707979ccb7f6983601c5ccb25d2354582.tar.bz2
cryptography-ce0d781707979ccb7f6983601c5ccb25d2354582.zip
Move the bindings into the hazmat module
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index d2ba03de..fab40b14 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -1,5 +1,5 @@
def pytest_generate_tests(metafunc):
- from cryptography.bindings import _ALL_BACKENDS
+ from cryptography.hazmat.bindings import _ALL_BACKENDS
if "backend" in metafunc.fixturenames:
metafunc.parametrize("backend", _ALL_BACKENDS)