commit | ce0d781707979ccb7f6983601c5ccb25d2354582 | [log] [tgz] |
---|---|---|
author | Donald Stufft <donald@stufft.io> | Sun Oct 27 16:52:33 2013 -0400 |
committer | Donald Stufft <donald@stufft.io> | Mon Oct 28 08:37:33 2013 -0400 |
tree | f6eab1903394ead5b86d8f05274f43703f5d4dee | |
parent | f04317ae24441082279ea73ccca0a6630c33cc86 [diff] [blame] |
Move the bindings into the hazmat module
diff --git a/tests/conftest.py b/tests/conftest.py index d2ba03d..fab40b1 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)