From cd04385f9ffe572763ce9e6f122ea4a36688781b Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 09:46:44 +0000 Subject: [PATCH] test: remove redundant provider-plus-date model-name case --- src/auto-reply/reply/reply-utils.test.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/auto-reply/reply/reply-utils.test.ts b/src/auto-reply/reply/reply-utils.test.ts index 68b25fc23..7644c994e 100644 --- a/src/auto-reply/reply/reply-utils.test.ts +++ b/src/auto-reply/reply/reply-utils.test.ts @@ -799,10 +799,6 @@ describe("extractShortModelName", () => { expect(extractShortModelName("claude-opus-4-5")).toBe("claude-opus-4-5"); }); - it("handles full path with provider and date suffix", () => { - expect(extractShortModelName("anthropic/claude-opus-4-5-20251101")).toBe("claude-opus-4-5"); - }); - it("preserves version numbers that look like dates but are not", () => { // Date suffix must be exactly 8 digits at the end expect(extractShortModelName("model-v1234567")).toBe("model-v1234567");