aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-10-29 10:37:28 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-10-29 10:37:28 -0700
commit28f7ad0752d70b998e289aa5839752829d9af4a9 (patch)
treeab0dba4cf1cf4cc6d0a493e939ec6f7491f4d277
parent8bf0d3caeeb001e0fe5957abde8755f523c04df6 (diff)
downloadcryptography-28f7ad0752d70b998e289aa5839752829d9af4a9.tar.gz
cryptography-28f7ad0752d70b998e289aa5839752829d9af4a9.tar.bz2
cryptography-28f7ad0752d70b998e289aa5839752829d9af4a9.zip
Use explicit relative imports, don't refer to the tests package
-rw-r--r--tests/hazmat/primitives/test_cmac.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_cmac.py b/tests/hazmat/primitives/test_cmac.py
index 49e2043e..c007527f 100644
--- a/tests/hazmat/primitives/test_cmac.py
+++ b/tests/hazmat/primitives/test_cmac.py
@@ -31,7 +31,7 @@ from cryptography.hazmat.primitives.ciphers.algorithms import (
)
from cryptography.hazmat.primitives.cmac import CMAC
-from tests.utils import (
+from ...utils import (
load_nist_vectors, load_vectors_from_file, raises_unsupported_algorithm
)