aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_x509.py
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2015-08-01 20:29:31 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2015-08-01 20:29:31 -0500
commit85fc4d51635e96adb5781a571acad062b4aa0d88 (patch)
tree70c9496bbed110178808a0875216c9b4f566d9e8 /tests/test_x509.py
parent6fdc89517a6466a8ab3632f1caac872a8ba6d9de (diff)
downloadcryptography-85fc4d51635e96adb5781a571acad062b4aa0d88.tar.gz
cryptography-85fc4d51635e96adb5781a571acad062b4aa0d88.tar.bz2
cryptography-85fc4d51635e96adb5781a571acad062b4aa0d88.zip
Minor pep8 and doc fixes
Diffstat (limited to 'tests/test_x509.py')
-rw-r--r--tests/test_x509.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py
index 341818af..2aea2f53 100644
--- a/tests/test_x509.py
+++ b/tests/test_x509.py
@@ -22,7 +22,7 @@ from cryptography.hazmat.primitives import hashes, serialization
from cryptography.hazmat.primitives.asymmetric import dsa, ec, rsa
from .hazmat.primitives.fixtures_dsa import DSA_KEY_2048
-from .hazmat.primitives.fixtures_rsa import RSA_KEY_512, RSA_KEY_2048
+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
@@ -1031,7 +1031,7 @@ class TestCertificateBuilder(object):
@pytest.mark.requires_backend_interface(interface=EllipticCurveBackend)
@pytest.mark.requires_backend_interface(interface=X509Backend)
- def test_build_cert_with_dsa_private_key(self, backend):
+ def test_build_cert_with_ec_private_key(self, backend):
if backend._lib.OPENSSL_VERSION_NUMBER < 0x10001000:
pytest.skip("Requires a newer OpenSSL. Must be >= 1.0.1")