okay this time really finish the rename. Up example iterations to 100k
diff --git a/tests/hazmat/primitives/utils.py b/tests/hazmat/primitives/utils.py
index 3a1d6d8..6b1d055 100644
--- a/tests/hazmat/primitives/utils.py
+++ b/tests/hazmat/primitives/utils.py
@@ -4,7 +4,7 @@
 import pytest
 
 from cryptography.hazmat.primitives import hashes, hmac
-from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2
+from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
 from cryptography.hazmat.primitives.ciphers import Cipher
 from cryptography.exceptions import (
     AlreadyFinalized, NotYetFinalized, AlreadyUpdated, InvalidTag,
@@ -225,7 +225,7 @@
     # Password and salt can contain \0, which should be loaded as a null char.
     # The NIST loader loads them as literal strings so we replace with the
     # proper value.
-    kdf = PBKDF2(
+    kdf = PBKDF2HMAC(
         algorithm,
         int(params["length"]),
         params["salt"],