aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/primitives/test_hkdf_vectors.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/test_hkdf_vectors.py b/tests/hazmat/primitives/test_hkdf_vectors.py
index 2748e010..d2ac79a8 100644
--- a/tests/hazmat/primitives/test_hkdf_vectors.py
+++ b/tests/hazmat/primitives/test_hkdf_vectors.py
@@ -31,7 +31,7 @@ from ...utils import load_hkdf_vectors
class TestHKDFSHA1(object):
test_HKDFSHA1 = generate_hkdf_test(
load_hkdf_vectors,
- os.path.join("kdf"),
+ os.path.join("KDF"),
["rfc-5869-HKDF-SHA1.txt"],
hashes.SHA1()
)
@@ -45,7 +45,7 @@ class TestHKDFSHA1(object):
class TestHKDFSHA256(object):
test_HKDFSHA1 = generate_hkdf_test(
load_hkdf_vectors,
- os.path.join("kdf"),
+ os.path.join("KDF"),
["rfc-5869-HKDF-SHA256.txt"],
hashes.SHA256()
)