diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-03-21 09:24:12 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-03-21 09:24:12 -0400 |
commit | a783c57b7fa71a7cc6e354f37f79cc7239fb8bd7 (patch) | |
tree | c78c71feac23089219cd554791857e45a875edc9 /tests/test_x509.py | |
parent | fd2b27aa063c31258482c9b432c80c98b5a93f07 (diff) | |
download | cryptography-a783c57b7fa71a7cc6e354f37f79cc7239fb8bd7.tar.gz cryptography-a783c57b7fa71a7cc6e354f37f79cc7239fb8bd7.tar.bz2 cryptography-a783c57b7fa71a7cc6e354f37f79cc7239fb8bd7.zip |
Remove API deprecated in 1.6, clean up the legacy deprecations (#3468)
* Remove API deprecated in 1.6, clean up the legacy deprecations
* flake8, unused import
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 db26f563..de19d0d3 100644 --- a/tests/test_x509.py +++ b/tests/test_x509.py @@ -521,7 +521,7 @@ class TestRSACertificate(object): ) with warnings.catch_warnings(): - warnings.simplefilter("always", utils.DeprecatedIn10) + warnings.simplefilter("always", utils.PersistentlyDeprecated) assert cert.serial == 2 assert cert.serial_number == 2 @@ -533,7 +533,7 @@ class TestRSACertificate(object): ) with warnings.catch_warnings(): - warnings.simplefilter("always", utils.DeprecatedIn10) + warnings.simplefilter("always", utils.PersistentlyDeprecated) with pytest.deprecated_call(): cert.serial |