diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_x509.py | 2 |
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, |