From f121836fd05ae89be4cabdec57357c1974906ccf Mon Sep 17 00:00:00 2001 From: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com> Date: Wed, 16 Sep 2026 14:18:45 -0300 Subject: [PATCH] test(providers): document the agnes-cn/chipotle count coincidence (#13131) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit provider-node-reserved-prefix.test.ts's REGISTRY id+alias walk was already red on the base tip (414 vs. expected 412) from agnes-cn (#13399, +id/+alias). Removing chipotle's REGISTRY id/alias in this PR nets it back to 412, making the test pass again without a numeric edit — record why in a comment so it doesn't read as an untracked coincidence later. --- tests/unit/provider-node-reserved-prefix.test.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/unit/provider-node-reserved-prefix.test.ts b/tests/unit/provider-node-reserved-prefix.test.ts index ae1f0b15a0..f5ff0ac6de 100644 --- a/tests/unit/provider-node-reserved-prefix.test.ts +++ b/tests/unit/provider-node-reserved-prefix.test.ts @@ -182,6 +182,9 @@ test("shared set size includes live REGISTRY and retired Designer + Felo + Qwen // #11786: SeekAi adds id "seekai" + alias "ska" (406 → 408). // #13024 (2b9e7fb3e) GreenPT and #13025 (22473dee5) EURouter each add one REGISTRY member (id == // alias); #13277 (02128f334) registers Arcee AI, adding id "arcee-ai" + alias "arcee" (408 → 412). + // #13399 registers Agnes CN, adding id "agnes-cn" + alias "agnescn" (412 → 414); #13131 retires + // `chipotle`/`pepper` (dead upstream), removing its id "chipotle" + alias "pepper" from the + // REGISTRY walk (414 → 412) — the two land back on the same total. assert.equal(RESERVED_PREFIX_COUNT, 412); });