test: remove duplicate undefined template-variable guard case

This commit is contained in:
Peter Steinberger
2026-02-16 09:45:51 +00:00
parent 3fb4a7eb53
commit 82fa526bb0

View File

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