aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_utils.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-03-19 11:49:32 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-03-19 11:49:32 -0400
commitafc1ccdcc86371588328c7894d230c9db3757359 (patch)
tree7fec9bb56953d1d5c687a96ca6ed084ec9fff5e6 /tests/test_utils.py
parent1805e7219ec4150427847e2c44956d97b861aab1 (diff)
downloadcryptography-afc1ccdcc86371588328c7894d230c9db3757359.tar.gz
cryptography-afc1ccdcc86371588328c7894d230c9db3757359.tar.bz2
cryptography-afc1ccdcc86371588328c7894d230c9db3757359.zip
import order fixes for future automated checking
Diffstat (limited to 'tests/test_utils.py')
-rw-r--r--tests/test_utils.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py
index 1003d61d..e5ab4cf1 100644
--- a/tests/test_utils.py
+++ b/tests/test_utils.py
@@ -21,10 +21,10 @@ import pretend
import pytest
from .utils import (
- load_nist_vectors, load_vectors_from_file, load_cryptrec_vectors,
- load_hash_vectors, check_for_iface, check_backend_support,
- select_backends, load_pkcs1_vectors, load_rsa_nist_vectors,
- load_fips_dsa_key_pair_vectors
+ check_backend_support, check_for_iface, load_cryptrec_vectors,
+ load_fips_dsa_key_pair_vectors, load_hash_vectors, load_nist_vectors,
+ load_pkcs1_vectors, load_rsa_nist_vectors, load_vectors_from_file,
+ select_backends
)