aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-10-21 22:13:31 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-10-21 22:13:31 -0400
commit2d79836e9dbafd217f2febb61b964157600dc9f5 (patch)
treee3aaadefef1d2b343dfd4386ab17b6ce477723af /tests
parent6a2e08bcf0cd8fddb0562d9a9d6864be8d2a0ba1 (diff)
parent0be37fb6e1ef85a9a7f22f061f3bc4b7f72ac6db (diff)
downloadcryptography-2d79836e9dbafd217f2febb61b964157600dc9f5.tar.gz
cryptography-2d79836e9dbafd217f2febb61b964157600dc9f5.tar.bz2
cryptography-2d79836e9dbafd217f2febb61b964157600dc9f5.zip
Merge pull request #2440 from reaperhulk/small-cleanups
Some CRL cleanups
Diffstat (limited to 'tests')
-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 e6358056..cb05daf0 100644
--- a/tests/test_x509.py
+++ b/tests/test_x509.py
@@ -161,7 +161,7 @@ class TestCertificateRevocationList(object):
)
for r in crl:
- assert isinstance(r, x509.RevokedCertificate)
+ assert isinstance(r, x509.RevokedCertificate)
# Check that len() works for CRLs.
assert len(crl) == 12
@@ -175,7 +175,7 @@ class TestCertificateRevocationList(object):
# CRL extensions are currently not supported in the OpenSSL backend.
with pytest.raises(NotImplementedError):
- crl.extensions
+ crl.extensions
@pytest.mark.requires_backend_interface(interface=X509Backend)