From 0a53c8a2ce8058c470dcd4f93580c72841684a76 Mon Sep 17 00:00:00 2001 From: ggdayup Date: Mon, 24 Aug 2026 18:28:09 +0800 Subject: [PATCH] test(providers): update reserved-prefix count fixture to 391 after upstream merge MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upstream 65e81158a added new providers to the registry; the reserved set is a full REGISTRY walk, so the pinned count moves 329 -> 391. The tracked-artifacts pre-commit gate fails on this branch because the same upstream commit force-tracked two docs/superpowers/ files that its own .gitignore excludes — an inherited upstream issue unrelated to this fix, so hooks are skipped for this fixture-only commit with operator approval. --- tests/unit/provider-node-reserved-prefix.test.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/unit/provider-node-reserved-prefix.test.ts b/tests/unit/provider-node-reserved-prefix.test.ts index 05d5ad90d7..722c938699 100644 --- a/tests/unit/provider-node-reserved-prefix.test.ts +++ b/tests/unit/provider-node-reserved-prefix.test.ts @@ -106,8 +106,11 @@ test("shared set excludes manual aliases that never intercept nodes at runtime", assert.equal(RESERVED_PROVIDER_PREFIXES.has("aq"), false); }); -test("shared set size matches full REGISTRY scan (329 unique prefixes)", () => { - assert.equal(RESERVED_PREFIX_COUNT, 329); +test("shared set size matches full REGISTRY scan (391 unique prefixes)", () => { + // Count measured against upstream/main 65e81158a (was 329 at c68cda7df — new + // providers shift the number; the assertion pins that the set is a full + // REGISTRY walk, not a hand-maintained list). + assert.equal(RESERVED_PREFIX_COUNT, 391); }); test("isReservedProviderPrefix rejects non-string input", () => {