From 4d7e8e9d74589323ec383089d0f82d05f5c111c9 Mon Sep 17 00:00:00 2001 From: rahulguptajss Date: Wed, 30 Oct 2024 19:43:42 +0530 Subject: [PATCH] feat: address review comments --- cmd/tools/template/template_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tools/template/template_test.go b/cmd/tools/template/template_test.go index e723d8f9b..8c3e1375f 100644 --- a/cmd/tools/template/template_test.go +++ b/cmd/tools/template/template_test.go @@ -550,7 +550,7 @@ func visitTemplates(t *testing.T, eachTemplate func(path string, model Model), d if ext != ".yaml" { return nil } - if strings.HasSuffix(path, "custom.yaml") || strings.HasSuffix(path, "default.yaml") { + if strings.HasSuffix(path, "custom.yaml") || strings.HasSuffix(path, "default.yaml") || strings.HasSuffix(path, "static_counter_definitions.yaml") { return nil } model, err := ReadTemplate(path)