From deef9f91bf663b2be24a24cc5ec28cfdb12d018b Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 09:48:51 +0000 Subject: [PATCH] test: remove duplicate multi-variable template check 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 5af3b4956..8518212bf 100644 --- a/src/auto-reply/reply/reply-utils.test.ts +++ b/src/auto-reply/reply/reply-utils.test.ts @@ -817,10 +817,6 @@ describe("hasTemplateVariables", () => { expect(hasTemplateVariables("prefix {thinkingLevel} suffix")).toBe(true); }); - it("returns true for multiple variables", () => { - expect(hasTemplateVariables("[{model} | {provider}]")).toBe(true); - }); - it("handles consecutive calls correctly (regex lastIndex reset)", () => { // First call expect(hasTemplateVariables("[{model}]")).toBe(true);