test: remove duplicate static template-variable false case

This commit is contained in:
Peter Steinberger
2026-02-16 09:47:45 +00:00
parent cd04385f9f
commit 523193a91f

View File

@@ -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);