summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2023-03-24 17:23:13 -0400
committerGitHub <noreply@github.com>2023-03-24 21:23:13 +0000
commit7e62312797cc018891fa4ffcfd9485fafacd3dfe (patch)
tree7db5681b512155c2a91d1c65f9067dfc42753f0d /tests
parent7e19ff0229a0a8d9263e126a01b11299221a0741 (diff)
downloadcryptography-7e62312797cc018891fa4ffcfd9485fafacd3dfe.tar.gz
Upgrade to pyo3 0.18 (#6935)
* Upgrade to pyo3 0.16 * Upgrade to pyo3 0.17 * Upgrade to pyo3 0.18
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/primitives/test_pkcs7.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_pkcs7.py b/tests/hazmat/primitives/test_pkcs7.py
index 4e61c5ef5..172cf40bd 100644
--- a/tests/hazmat/primitives/test_pkcs7.py
+++ b/tests/hazmat/primitives/test_pkcs7.py
@@ -807,7 +807,7 @@ class TestPKCS7SerializeCerts:
)
with pytest.raises(TypeError):
pkcs7.serialize_certificates(
- "not a list of certs", # type: ignore[arg-type]
+ object(), # type: ignore[arg-type]
serialization.Encoding.PEM,
)