diff options
author | Donald Stufft <donald@stufft.io> | 2013-10-27 17:27:44 -0400 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2013-10-28 08:37:33 -0400 |
commit | 69d628d185d80bf0791d90673ca3e4415ec5fff5 (patch) | |
tree | 98f1b4339960b3090cc63fc68a970f8237b7a19b | |
parent | e51fb935bf27ce56282d8bd9b33f708d2e660449 (diff) | |
download | cryptography-69d628d185d80bf0791d90673ca3e4415ec5fff5.tar.gz cryptography-69d628d185d80bf0791d90673ca3e4415ec5fff5.tar.bz2 cryptography-69d628d185d80bf0791d90673ca3e4415ec5fff5.zip |
Handle the deeper package directory
-rw-r--r-- | tests/hazmat/primitives/test_cryptrec.py | 2 | ||||
-rw-r--r-- | tests/hazmat/primitives/test_hash_vectors.py | 2 | ||||
-rw-r--r-- | tests/hazmat/primitives/test_nist.py | 2 | ||||
-rw-r--r-- | tests/hazmat/primitives/test_openssl_vectors.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/hazmat/primitives/test_cryptrec.py b/tests/hazmat/primitives/test_cryptrec.py index f3b24fc9..48f64a27 100644 --- a/tests/hazmat/primitives/test_cryptrec.py +++ b/tests/hazmat/primitives/test_cryptrec.py @@ -23,7 +23,7 @@ import os from cryptography.hazmat.primitives.block import ciphers, modes from .utils import generate_encrypt_test -from ..utils import load_cryptrec_vectors_from_file +from ...utils import load_cryptrec_vectors_from_file class TestCamelliaECB(object): diff --git a/tests/hazmat/primitives/test_hash_vectors.py b/tests/hazmat/primitives/test_hash_vectors.py index 4485260d..ebb24350 100644 --- a/tests/hazmat/primitives/test_hash_vectors.py +++ b/tests/hazmat/primitives/test_hash_vectors.py @@ -18,7 +18,7 @@ import os from cryptography.hazmat.primitives import hashes from .utils import generate_hash_test, generate_long_string_hash_test -from ..utils import load_hash_vectors_from_file +from ...utils import load_hash_vectors_from_file class TestSHA1(object): diff --git a/tests/hazmat/primitives/test_nist.py b/tests/hazmat/primitives/test_nist.py index 7f79f23d..c15afd5d 100644 --- a/tests/hazmat/primitives/test_nist.py +++ b/tests/hazmat/primitives/test_nist.py @@ -23,7 +23,7 @@ import os from cryptography.hazmat.primitives.block import ciphers, modes from .utils import generate_encrypt_test -from ..utils import load_nist_vectors_from_file +from ...utils import load_nist_vectors_from_file class TestAES_CBC(object): diff --git a/tests/hazmat/primitives/test_openssl_vectors.py b/tests/hazmat/primitives/test_openssl_vectors.py index ef963a0a..94037247 100644 --- a/tests/hazmat/primitives/test_openssl_vectors.py +++ b/tests/hazmat/primitives/test_openssl_vectors.py @@ -22,7 +22,7 @@ import binascii from cryptography.hazmat.primitives.block import ciphers, modes from .utils import generate_encrypt_test -from ..utils import load_openssl_vectors_from_file +from ...utils import load_openssl_vectors_from_file class TestCamelliaCBC(object): |