Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jsonschema==4.16.0
lxml==4.9.1
marshmallow==2.21.0
pydantic==1.10.2
pyOpenSSL==22.0.0
pyOpenSSL==22.1.0
pytz==2022.6
signxml==2.10.1
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pycparser==2.20
# via cffi
pydantic==1.10.2
# via -r requirements.in
pyopenssl==22.0.0
pyopenssl==22.1.0
# via
# -r requirements.in
# signxml
Expand Down
2 changes: 1 addition & 1 deletion tests/test_libs_xml_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def test_fail_included_cert_not_from_a_known_ca(self) -> None:
verify_xml_signature(xml_doc, trusted_x509_cert=None)
self.assertEqual(
cm.exception.args,
("[20, 0, 'unable to get local issuer certificate']",),
('unable to get local issuer certificate',),
)

def test_fail_signed_data_modified(self) -> None:
Expand Down