From e414695a5b8ba0717c7897785ac742899554f474 Mon Sep 17 00:00:00 2001 From: Edward Miller Date: Sat, 19 Apr 2025 13:40:32 +0100 Subject: [PATCH] fix Signed-off-by: Edward Miller --- pkg/lint/lint_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/lint/lint_test.go b/pkg/lint/lint_test.go index a776aecff..888d3dfe6 100644 --- a/pkg/lint/lint_test.go +++ b/pkg/lint/lint_test.go @@ -92,7 +92,7 @@ func TestInvalidYaml(t *testing.T) { } func TestInvalidChartYaml(t *testing.T) { - m := All(invalidChartFileDir, values, namespace, strict).Messages + m := RunAll(invalidChartFileDir, values, namespace).Messages if len(m) != 1 { t.Fatalf("All didn't fail with expected errors, got %#v", m) }