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 <noreply@paperclip.ing>
This commit is contained in:
nickyleach 2026-09-11 19:21:34 +00:00
parent df9b4d69d4
commit 06ed04b483
1 changed files with 1 additions and 1 deletions

View File

@ -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),