diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-10-21 20:18:24 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-10-21 20:18:24 -0500 |
commit | 0219e66254760939f63c07dd4cd9f5972bbc92af (patch) | |
tree | a805c6b2d7aee2b3cb92e330819bc6fdec092dcf /tests/test_x509.py | |
parent | 6a2e08bcf0cd8fddb0562d9a9d6864be8d2a0ba1 (diff) | |
download | cryptography-0219e66254760939f63c07dd4cd9f5972bbc92af.tar.gz cryptography-0219e66254760939f63c07dd4cd9f5972bbc92af.tar.bz2 cryptography-0219e66254760939f63c07dd4cd9f5972bbc92af.zip |
fix some indentation
Diffstat (limited to 'tests/test_x509.py')
-rw-r--r-- | tests/test_x509.py | 4 |
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) |