fix(quality): reconcile provider-assets-provenance manifest to the real 142-file snapshot (#11876)

Self-authored follow-up fix, part of the merge-batch session that drained the provider-retirement/provenance sweep PRs this manifest went stale from. Validated (see PR body): gate passes 142/142, regression test 18/18, typecheck/file-size/changelog-integrity/tracked-artifacts all clean.
This commit is contained in:
Diego Rodrigues de Sa e Souza
2026-08-28 06:56:55 -03:00
committed by GitHub
parent 7d57d9f4a1
commit b45c97df08
3 changed files with 147 additions and 233 deletions

View File

@@ -497,7 +497,7 @@ test("provider asset provenance gate binds auditedCommit to the physical provide
}
});
test("repository provider asset manifest covers the audited 225-file snapshot", () => {
test("repository provider asset manifest covers the audited 142-file snapshot", () => {
const result = runGate(
join(REPO_ROOT, "public/providers"),
join(REPO_ROOT, "config/quality/provider-assets-provenance.jsonl")
@@ -506,7 +506,7 @@ test("repository provider asset manifest covers the audited 225-file snapshot",
assert.equal(result.status, 0, `${result.stdout}\n${result.stderr}`);
assert.match(
result.stdout,
/225\/225 registered; proven=71 probable=69 unresolved=85; duplicate-groups=5/
/142\/142 registered; proven=71 probable=69 unresolved=2; duplicate-groups=1/
);
});