From 7bce2416251de35f70aa173a0639978ab37911ee Mon Sep 17 00:00:00 2001 From: Enin Kaduk Date: Tue, 11 Jun 2024 14:58:01 +0200 Subject: [PATCH] typo: Remove debug comment, set default as false Signed-off-by: Enin Kaduk --- pkg/action/lint_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/action/lint_test.go b/pkg/action/lint_test.go index 81224bb78..4ab611137 100644 --- a/pkg/action/lint_test.go +++ b/pkg/action/lint_test.go @@ -17,7 +17,6 @@ limitations under the License. package action import ( - //"fmt" "testing" ) @@ -78,7 +77,7 @@ func TestLintChart(t *testing.T) { for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { - _, err := lintChart(tt.chartPath, map[string]interface{}{}, namespace, nil, true) + _, err := lintChart(tt.chartPath, map[string]interface{}{}, namespace, nil, false) switch { case err != nil && !tt.err: t.Errorf("%s", err)