diff --git a/src/auto-reply/reply/reply-utils.test.ts b/src/auto-reply/reply/reply-utils.test.ts index 7644c994ea4..5af3b495639 100644 --- a/src/auto-reply/reply/reply-utils.test.ts +++ b/src/auto-reply/reply/reply-utils.test.ts @@ -811,10 +811,6 @@ describe("hasTemplateVariables", () => { expect(hasTemplateVariables("")).toBe(false); }); - it("returns false for static prefix", () => { - expect(hasTemplateVariables("[Claude]")).toBe(false); - }); - it("returns true when template variables present", () => { expect(hasTemplateVariables("[{model}]")).toBe(true); expect(hasTemplateVariables("{provider}")).toBe(true);