diff options
Diffstat (limited to 'tests/x509/test_ocsp.py')
-rw-r--r-- | tests/x509/test_ocsp.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/x509/test_ocsp.py b/tests/x509/test_ocsp.py index 5793f6d62..5d9da790a 100644 --- a/tests/x509/test_ocsp.py +++ b/tests/x509/test_ocsp.py @@ -726,7 +726,9 @@ class TestOCSPResponseBuilder(object): class TestSignedCertificateTimestampsExtension(object): def test_init(self): with pytest.raises(TypeError): - x509.SignedCertificateTimestamps([object()]) + x509.SignedCertificateTimestamps( + [object()] # type: ignore[list-item] + ) def test_repr(self): assert repr(x509.SignedCertificateTimestamps([])) == ( |