From 06ed04b483f61db374a9ab03dd6f3f5c35995199 Mon Sep 17 00:00:00 2001 From: nickyleach <331803+nickyleach@users.noreply.github.com> Date: Fri, 11 Sep 2026 19:21:34 +0000 Subject: [PATCH] test(acpx-engine): fix stale counter count in permission observer test title The test title said "three counters" but the assertion checks four counters plus the type. An earlier design had three counters. A later change added the fourth counter without updating the title. Co-authored-by: Paperclip --- .../adapter-utils/src/acpx-engine/permission-observer.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/adapter-utils/src/acpx-engine/permission-observer.test.ts b/packages/adapter-utils/src/acpx-engine/permission-observer.test.ts index c281659a46..3fedca7c70 100644 --- a/packages/adapter-utils/src/acpx-engine/permission-observer.test.ts +++ b/packages/adapter-utils/src/acpx-engine/permission-observer.test.ts @@ -441,7 +441,7 @@ describe("createAcpPermissionObserver — per-run budgets", () => { expect(settled.length).toBe(256); }); - it("emits a summary event with only the three counters and the type, using an exact key match", async () => { + it("emits a summary event with only the four counters and the type, using an exact key match", async () => { const events: PermissionObserverLogEvent[] = []; const observer = createAcpPermissionObserver({ emitLog: (event) => events.push(event),