diff options
author | Ayrx <terrycwk1994@gmail.com> | 2014-03-16 19:53:20 +0800 |
---|---|---|
committer | Ayrx <terrycwk1994@gmail.com> | 2014-03-16 19:53:20 +0800 |
commit | 471c1184eb8a7c24111abdc0bcb418c6c6839757 (patch) | |
tree | 2b9fb24cfb79f538d8075421f939013b2d901440 /tests | |
parent | f56c54e36ce06e8e29691c3c4dfd000e8477a41d (diff) | |
download | cryptography-471c1184eb8a7c24111abdc0bcb418c6c6839757.tar.gz cryptography-471c1184eb8a7c24111abdc0bcb418c6c6839757.tar.bz2 cryptography-471c1184eb8a7c24111abdc0bcb418c6c6839757.zip |
Style nitpick
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/test_ciphers.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_ciphers.py b/tests/hazmat/primitives/test_ciphers.py index dfed63a8..e1f5dbc3 100644 --- a/tests/hazmat/primitives/test_ciphers.py +++ b/tests/hazmat/primitives/test_ciphers.py @@ -14,7 +14,6 @@ from __future__ import absolute_import, division, print_function import binascii -from cryptography.hazmat.primitives.ciphers.modes import ECB import pytest @@ -25,6 +24,8 @@ from cryptography.hazmat.primitives.ciphers.algorithms import ( AES, Camellia, TripleDES, Blowfish, ARC4, CAST5, IDEA ) +from cryptography.hazmat.primitives.ciphers.modes import ECB + class TestAES(object): @pytest.mark.parametrize(("key", "keysize"), [ |