aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlex Stapleton <alexs@prol.etari.at>2014-04-20 22:24:41 +0100
committerAlex Stapleton <alexs@prol.etari.at>2014-04-20 22:24:41 +0100
commit707b0085cb1034e6a8e6faed6a78bc675b878fd4 (patch)
treed7473fe07675b66e812fd00ac6ce24bcabccd892 /tests
parent89917f1fd0cff5c5be3bdad19cc022e78ee645ba (diff)
downloadcryptography-707b0085cb1034e6a8e6faed6a78bc675b878fd4.tar.gz
cryptography-707b0085cb1034e6a8e6faed6a78bc675b878fd4.tar.bz2
cryptography-707b0085cb1034e6a8e6faed6a78bc675b878fd4.zip
Fix pep8 errors for latest import linter
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/primitives/test_dsa.py2
-rw-r--r--tests/utils.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/test_dsa.py b/tests/hazmat/primitives/test_dsa.py
index 2b5d4bb3..bc3b1db6 100644
--- a/tests/hazmat/primitives/test_dsa.py
+++ b/tests/hazmat/primitives/test_dsa.py
@@ -23,7 +23,7 @@ from cryptography.hazmat.primitives.asymmetric import dsa
from cryptography.utils import bit_length
from ...utils import (
- load_vectors_from_file, load_fips_dsa_key_pair_vectors,
+ load_fips_dsa_key_pair_vectors, load_vectors_from_file,
raises_unsupported_algorithm
)
diff --git a/tests/utils.py b/tests/utils.py
index c38ba7ff..63560395 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -15,8 +15,8 @@ from __future__ import absolute_import, division, print_function
import binascii
import collections
-from contextlib import contextmanager
import re
+from contextlib import contextmanager
import pytest