diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2019-02-02 23:23:52 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2019-02-02 20:23:52 -0800 |
commit | c03cc5183d1ec3540f0b22613aedba161beeec97 (patch) | |
tree | f2e30e7ec2c277c36f78580d40ac6c4955e6189f /tests/x509/test_x509.py | |
parent | d2e85573d6bcdd23a9c719dacf182165bafa22c9 (diff) | |
download | cryptography-c03cc5183d1ec3540f0b22613aedba161beeec97.tar.gz cryptography-c03cc5183d1ec3540f0b22613aedba161beeec97.tar.bz2 cryptography-c03cc5183d1ec3540f0b22613aedba161beeec97.zip |
Fixes for the latest pep8-naming (#4744)
Diffstat (limited to 'tests/x509/test_x509.py')
-rw-r--r-- | tests/x509/test_x509.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/x509/test_x509.py b/tests/x509/test_x509.py index 1ead5947..72cd49e7 100644 --- a/tests/x509/test_x509.py +++ b/tests/x509/test_x509.py @@ -110,7 +110,7 @@ class TestCertificateRevocationList(object): ) with pytest.raises(UnsupportedAlgorithm): - crl.signature_hash_algorithm() + crl.signature_hash_algorithm() def test_issuer(self, backend): crl = _load_cert( |