We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9886f05 commit b0f769aCopy full SHA for b0f769a
1 file changed
tests/test_provenance_verifier.py
@@ -25,7 +25,6 @@
25
ProvenanceVerificationPolicy,
26
)
27
28
-
29
VALID_SHA256 = "a" * 64
30
31
@@ -143,9 +142,10 @@ def test_provenance_manifest_verifier_fails_unsigned_artifact_under_default_poli
143
142
assert not report.supports_signed_provenance_claim()
144
assert report.signed_artifact_count == 0
145
assert report.blocker_count == 3
146
- assert {finding.finding_id for finding in report.findings_for_artifact(
147
- "ev-framework-crosswalk-001"
148
- )} >= {
+ assert {
+ finding.finding_id
+ for finding in report.findings_for_artifact("ev-framework-crosswalk-001")
+ } >= {
149
"artifact-ev-framework-crosswalk-001-has-no-signature",
150
"artifact-ev-framework-crosswalk-001-has-no-attestation",
151
}
0 commit comments