From 82fa526bb06792d19b03db4a794e8fa1ee11dc9c Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 09:45:51 +0000 Subject: [PATCH] test: remove duplicate undefined template-variable guard 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 743568b38..68b25fc23 100644 --- a/src/auto-reply/reply/reply-utils.test.ts +++ b/src/auto-reply/reply/reply-utils.test.ts @@ -811,10 +811,6 @@ describe("extractShortModelName", () => { }); describe("hasTemplateVariables", () => { - it("returns false for undefined", () => { - expect(hasTemplateVariables(undefined)).toBe(false); - }); - it("returns false for empty string", () => { expect(hasTemplateVariables("")).toBe(false); });