commit | f8796b15a279db82cdefcd00bebfef4cdef8fee8 | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Fri Dec 13 20:28:55 2013 -0800 |
committer | Alex Gaynor <alex.gaynor@gmail.com> | Fri Dec 13 20:28:55 2013 -0800 |
tree | d356e592a7a174f356a8f5b9904860b95e9a0312 | |
parent | b9dd85c661f405099a88b7a76aefde5f59a6b985 [diff] [blame] |
Renamed bindings to backends
diff --git a/tests/conftest.py b/tests/conftest.py index fab40b1..7166280 100644 --- a/tests/conftest.py +++ b/tests/conftest.py
@@ -1,5 +1,5 @@ def pytest_generate_tests(metafunc): - from cryptography.hazmat.bindings import _ALL_BACKENDS + from cryptography.hazmat.backends import _ALL_BACKENDS if "backend" in metafunc.fixturenames: metafunc.parametrize("backend", _ALL_BACKENDS)