From 7d12c5ea4d2d0ae5c32222630dc092f259f1e2aa Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Thu, 19 Feb 2026 08:30:26 +0000 Subject: [PATCH] test: remove duplicate extra-high think-level case --- src/auto-reply/thinking.test.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/auto-reply/thinking.test.ts b/src/auto-reply/thinking.test.ts index dd0523fcc3..4588eee791 100644 --- a/src/auto-reply/thinking.test.ts +++ b/src/auto-reply/thinking.test.ts @@ -30,11 +30,6 @@ describe("normalizeThinkLevel", () => { expect(normalizeThinkLevel("xhigher")).toBeUndefined(); }); - it("accepts extra-high aliases as xhigh", () => { - expect(normalizeThinkLevel("extra-high")).toBe("xhigh"); - expect(normalizeThinkLevel("extra high")).toBe("xhigh"); - }); - it("accepts on as low", () => { expect(normalizeThinkLevel("on")).toBe("low"); });