aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index b526f2bf..d2ba03de 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -1,5 +1,5 @@
def pytest_generate_tests(metafunc):
- from cryptography.bindings import _ALL_APIS
+ from cryptography.bindings import _ALL_BACKENDS
- if "api" in metafunc.fixturenames:
- metafunc.parametrize("api", _ALL_APIS)
+ if "backend" in metafunc.fixturenames:
+ metafunc.parametrize("backend", _ALL_BACKENDS)