diff options
author | Peter Hamilton <peter.hamilton@jhuapl.edu> | 2015-10-30 08:15:50 -0400 |
---|---|---|
committer | Peter Hamilton <peter.hamilton@jhuapl.edu> | 2015-10-30 08:15:50 -0400 |
commit | 51bc8e0e77da8fce933b9d2722136d6ace167db0 (patch) | |
tree | 9635b03195c31ce41194214f26cb7c2a27986c55 /tests/test_x509.py | |
parent | 1f6890e2264e9d608c2966dee88960f9806f70f1 (diff) | |
download | cryptography-51bc8e0e77da8fce933b9d2722136d6ace167db0.tar.gz cryptography-51bc8e0e77da8fce933b9d2722136d6ace167db0.tar.bz2 cryptography-51bc8e0e77da8fce933b9d2722136d6ace167db0.zip |
Fixing fixture import order
Diffstat (limited to 'tests/test_x509.py')
-rw-r--r-- | tests/test_x509.py | 2 |
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 |