diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-10 15:34:34 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-08-10 15:34:34 -0400 |
commit | 64e9a64f720124cf72d1b9b77df304ed99d0442a (patch) | |
tree | 25553b863184b896775d8b9ea0f1741fbb5c1074 /tests | |
parent | 72bbea2275ccb056d26abce014b0fd5eaa756851 (diff) | |
download | cryptography-64e9a64f720124cf72d1b9b77df304ed99d0442a.tar.gz cryptography-64e9a64f720124cf72d1b9b77df304ed99d0442a.tar.bz2 cryptography-64e9a64f720124cf72d1b9b77df304ed99d0442a.zip |
Be consistent
Diffstat (limited to 'tests')
-rw-r--r-- | tests/primitives/test_nist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/primitives/test_nist.py b/tests/primitives/test_nist.py index 8b63665c..dc265435 100644 --- a/tests/primitives/test_nist.py +++ b/tests/primitives/test_nist.py @@ -37,7 +37,7 @@ def parameterize_kat_encrypt(fname): def paramterize_mmt_encrypt(fname): return pytest.mark.parametrize(("key", "iv", "plaintext", "ciphertext"), load_nist_vectors_from_file( - os.path.join("AES/MMT", fname), + os.path.join("AES/MMT/", fname), "ENCRYPT", ["key", "iv", "plaintext", "ciphertext"], ) |