aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-28 17:09:59 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-01-28 17:09:59 -0600
commit1277bc7e993dec8bbe64f1b5aeaaae6cff6429dd (patch)
tree1b4b575b95dd9be7c43f0f06ce7b626348bf18cc /tests/conftest.py
parentb3f763f1beae2a5fa1fdd3c27b6e9cb777ce7f50 (diff)
downloadcryptography-1277bc7e993dec8bbe64f1b5aeaaae6cff6429dd.tar.gz
cryptography-1277bc7e993dec8bbe64f1b5aeaaae6cff6429dd.tar.bz2
cryptography-1277bc7e993dec8bbe64f1b5aeaaae6cff6429dd.zip
okay this time really finish the rename. Up example iterations to 100k
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 7370294f..ecad1b23 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -2,7 +2,7 @@ import pytest
from cryptography.hazmat.backends import _ALL_BACKENDS
from cryptography.hazmat.backends.interfaces import (
- HMACBackend, CipherBackend, HashBackend, PBKDF2Backend
+ HMACBackend, CipherBackend, HashBackend, PBKDF2HMACBackend
)
from .utils import check_for_iface, check_backend_support, select_backends
@@ -21,7 +21,7 @@ def pytest_runtest_setup(item):
check_for_iface("hmac", HMACBackend, item)
check_for_iface("cipher", CipherBackend, item)
check_for_iface("hash", HashBackend, item)
- check_for_iface("pbkdf2", PBKDF2Backend, item)
+ check_for_iface("pbkdf2hmac", PBKDF2HMACBackend, item)
check_backend_support(item)