diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-10-29 15:06:11 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-10-29 15:06:11 -0500 |
commit | 0ed7f56596bae285e8dd845b6646b44cc73a1609 (patch) | |
tree | ab0dba4cf1cf4cc6d0a493e939ec6f7491f4d277 | |
parent | 8bf0d3caeeb001e0fe5957abde8755f523c04df6 (diff) | |
parent | 28f7ad0752d70b998e289aa5839752829d9af4a9 (diff) | |
download | cryptography-0ed7f56596bae285e8dd845b6646b44cc73a1609.tar.gz cryptography-0ed7f56596bae285e8dd845b6646b44cc73a1609.tar.bz2 cryptography-0ed7f56596bae285e8dd845b6646b44cc73a1609.zip |
Merge pull request #1452 from alex/use-relative-imports
Use explicit relative imports, don't refer to the tests package
-rw-r--r-- | tests/hazmat/primitives/test_cmac.py | 2 |
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 ) |