aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_x509.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-03 22:53:46 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-03 22:53:46 -0600
commitf389373faf59e4785c576c0de2aae759347804ab (patch)
tree93ac4a10a8730cc8f16bf9da788837318bdf7051 /tests/test_x509.py
parentceedfcde29d7654f2aae1fbbcb0bf89d0f30ad0d (diff)
downloadcryptography-f389373faf59e4785c576c0de2aae759347804ab.tar.gz
cryptography-f389373faf59e4785c576c0de2aae759347804ab.tar.bz2
cryptography-f389373faf59e4785c576c0de2aae759347804ab.zip
add some missing skips
Diffstat (limited to 'tests/test_x509.py')
-rw-r--r--tests/test_x509.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py
index 51c48f43..0a1870d5 100644
--- a/tests/test_x509.py
+++ b/tests/test_x509.py
@@ -3128,6 +3128,7 @@ class TestECDSACertificateRequest(object):
]
def test_signature(self, backend):
+ _skip_curve_unsupported(backend, ec.SECP384R1())
request = _load_cert(
os.path.join("x509", "requests", "ec_sha256.pem"),
x509.load_pem_x509_csr,
@@ -3141,6 +3142,7 @@ class TestECDSACertificateRequest(object):
)
def test_tbs_certrequest_bytes(self, backend):
+ _skip_curve_unsupported(backend, ec.SECP384R1())
request = _load_cert(
os.path.join("x509", "requests", "ec_sha256.pem"),
x509.load_pem_x509_csr,