From 69d628d185d80bf0791d90673ca3e4415ec5fff5 Mon Sep 17 00:00:00 2001 From: Donald Stufft Date: Sun, 27 Oct 2013 17:27:44 -0400 Subject: Handle the deeper package directory --- tests/hazmat/primitives/test_cryptrec.py | 2 +- tests/hazmat/primitives/test_hash_vectors.py | 2 +- tests/hazmat/primitives/test_nist.py | 2 +- 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): -- cgit v1.2.3