From 9d43f706436bd921c9396f95a80bcbdf54b8b449 Mon Sep 17 00:00:00 2001 From: Edward Miller <55854159+edbmiller@users.noreply.github.com> Date: Tue, 11 Feb 2025 10:52:18 +0000 Subject: [PATCH] Update error message Co-authored-by: Andrew Block Signed-off-by: Edward Miller <55854159+edbmiller@users.noreply.github.com> --- 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 11d53d0e0..a776aecff 100644 --- a/pkg/lint/lint_test.go +++ b/pkg/lint/lint_test.go @@ -96,7 +96,7 @@ func TestInvalidChartYaml(t *testing.T) { if len(m) != 1 { t.Fatalf("All didn't fail with expected errors, got %#v", m) } - if !strings.Contains(m[0].Err.Error(), "failed to strictly parse chartfile") { + if !strings.Contains(m[0].Err.Error(), "failed to strictly parse chart metadata file") { t.Errorf("All didn't have the error for duplicate YAML keys") } }