aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_x509.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-03-12 12:44:24 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-03-12 12:44:24 -0400
commit83457cf270fef19446d7bead3b0eb86f6d04c4f5 (patch)
treea707488be039cfdf8b2b384e153b971688f0d49a /tests/test_x509.py
parentab973321f6012626e63420603c34e2975f42f237 (diff)
downloadcryptography-83457cf270fef19446d7bead3b0eb86f6d04c4f5.tar.gz
cryptography-83457cf270fef19446d7bead3b0eb86f6d04c4f5.tar.bz2
cryptography-83457cf270fef19446d7bead3b0eb86f6d04c4f5.zip
move NUMERICSTRING certificate test to test_openssl & make it more specific
Diffstat (limited to 'tests/test_x509.py')
-rw-r--r--tests/test_x509.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py
index 8a801f2d..c042169c 100644
--- a/tests/test_x509.py
+++ b/tests/test_x509.py
@@ -3157,18 +3157,6 @@ class TestDSACertificateRequest(object):
verifier.verify()
-@pytest.mark.requires_backend_interface(interface=X509Backend)
-class TestGOSTCertificate(object):
- def test_numeric_string_x509_name_entry(self, backend):
- cert = _load_cert(
- os.path.join("x509", "e-trust.ru.der"),
- x509.load_der_x509_certificate,
- backend
- )
- with pytest.raises(TypeError):
- cert.subject
-
-
@pytest.mark.requires_backend_interface(interface=EllipticCurveBackend)
@pytest.mark.requires_backend_interface(interface=X509Backend)
class TestECDSACertificate(object):