We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca78a6e commit 8ae89e2Copy full SHA for 8ae89e2
1 file changed
tests/test_claim_guardrails_validation.py
@@ -288,7 +288,10 @@ def test_claim_guardrail_validator_blocks_unknown_reviewer_capability_and_artifa
288
assert not report.is_claim_release_ready()
289
assert report.findings_for_reviewer("reviewer-001")
290
assert any(finding.capability_id == "assurance-dossier" for finding in report.findings)
291
- assert any(finding.artifact_id == "artifact-readiness-rollup-001" for finding in report.findings)
+ assert any(
292
+ finding.artifact_id == "artifact-readiness-rollup-001"
293
+ for finding in report.findings
294
+ )
295
296
297
def test_claim_guardrail_validator_blocks_missing_evidence_bundle() -> None:
0 commit comments