aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2014-01-22 22:13:35 -0800
committerDavid Reid <dreid@dreid.org>2014-02-03 10:05:26 -0800
commit9b24cb8a2c7324696adc7a595e4a143f23e5f2bc (patch)
treecfba0bd91e6cc5ec69d0605ae411fc3d6440904f /tests
parent41f12d769c8653e812d3979a3b87f1864fcec019 (diff)
downloadcryptography-9b24cb8a2c7324696adc7a595e4a143f23e5f2bc.tar.gz
cryptography-9b24cb8a2c7324696adc7a595e4a143f23e5f2bc.tar.bz2
cryptography-9b24cb8a2c7324696adc7a595e4a143f23e5f2bc.zip
Fix case.
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()
)