We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b09cd2 commit e86b47eCopy full SHA for e86b47e
test/test_bundle.py
@@ -102,7 +102,7 @@ def test_sign_does_not_produce_root(
102
103
# Parse the output bundle.
104
bundle_contents = materials.bundle.read_bytes()
105
- bundle = Bundle().from_json(bundle_contents)
+ bundle = Bundle.from_dict(json.loads(bundle_contents))
106
107
# Iterate over our cert chain and check for roots.
108
if bundle.verification_material.is_set("x509_certificate_chain"):
@@ -449,7 +449,6 @@ def temp_bundle_path(bundle: dict) -> Path:
449
if not bundle:
450
continue
451
with subtests.test(artifact["url"]):
452
-
453
bundle_path = temp_bundle_path(bundle)
454
sha256 = artifact["sha256"]
455
0 commit comments