aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPeter Hamilton <peter.hamilton@jhuapl.edu>2015-10-30 08:15:50 -0400
committerPeter Hamilton <peter.hamilton@jhuapl.edu>2015-10-30 08:15:50 -0400
commit51bc8e0e77da8fce933b9d2722136d6ace167db0 (patch)
tree9635b03195c31ce41194214f26cb7c2a27986c55 /tests
parent1f6890e2264e9d608c2966dee88960f9806f70f1 (diff)
downloadcryptography-51bc8e0e77da8fce933b9d2722136d6ace167db0.tar.gz
cryptography-51bc8e0e77da8fce933b9d2722136d6ace167db0.tar.bz2
cryptography-51bc8e0e77da8fce933b9d2722136d6ace167db0.zip
Fixing fixture import order
Diffstat (limited to 'tests')
-rw-r--r--tests/test_x509.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py
index f9791fe2..fb1f5239 100644
--- a/tests/test_x509.py
+++ b/tests/test_x509.py
@@ -29,8 +29,8 @@ from cryptography.x509.oid import (
)
from .hazmat.primitives.fixtures_dsa import DSA_KEY_2048
-from .hazmat.primitives.fixtures_rsa import RSA_KEY_2048, RSA_KEY_512
from .hazmat.primitives.fixtures_ec import EC_KEY_SECP192R1, EC_KEY_SECT163K1
+from .hazmat.primitives.fixtures_rsa import RSA_KEY_2048, RSA_KEY_512
from .hazmat.primitives.test_ec import _skip_curve_unsupported
from .utils import load_vectors_from_file