aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/backends
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-25 10:59:22 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-25 13:01:47 -0600
commitc33ffd7527a4ce77010425fedfbeed27856c8aa8 (patch)
tree701630292bc8f0dd698487d7b95ef262fca834b4 /tests/hazmat/backends
parentef5f9fc339a7137f5a9761f8c27a08c554c27b1c (diff)
downloadcryptography-c33ffd7527a4ce77010425fedfbeed27856c8aa8.tar.gz
cryptography-c33ffd7527a4ce77010425fedfbeed27856c8aa8.tar.bz2
cryptography-c33ffd7527a4ce77010425fedfbeed27856c8aa8.zip
RevokedCertificateBuilder
Diffstat (limited to 'tests/hazmat/backends')
-rw-r--r--tests/hazmat/backends/test_openssl.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py
index af064d18..c8d35893 100644
--- a/tests/hazmat/backends/test_openssl.py
+++ b/tests/hazmat/backends/test_openssl.py
@@ -510,8 +510,8 @@ class TestOpenSSLSignX509CertificateRevocationList(object):
class TestOpenSSLCreateRevokedCertificate(object):
- def test_not_yet_implemented(self):
- with pytest.raises(NotImplementedError):
+ def test_invalid_builder(self):
+ with pytest.raises(TypeError):
backend.create_x509_revoked_certificate(object())