From f84f6d91eba661b7ccf62882bfdf3c1844c60bbe Mon Sep 17 00:00:00 2001 From: Jeremy Farrell Date: Mon, 4 Sep 2023 22:15:29 -0600 Subject: [PATCH] fix(helm): fixed small typo causing failed test Missed not a map, causing failed test. Signed off by: Jeremy Farrell Signed-off-by: Jeremy Farrell --- pkg/chartutil/coalesce.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/chartutil/coalesce.go b/pkg/chartutil/coalesce.go index 1f9f4a20b..f06b67cb1 100644 --- a/pkg/chartutil/coalesce.go +++ b/pkg/chartutil/coalesce.go @@ -234,7 +234,7 @@ func coalesceValues(printf printFn, c *chart.Chart, v map[string]interface{}, pr // If the original value is nil, there is nothing to coalesce, so we don't print // the warning if val != nil { - printf("warning: skipped value for %s.%s: Not a map.", subPrefix, key) + printf("warning: skipped value for %s.%s: Not a mapping.", subPrefix, key) } } else { // Because v has higher precedence than nv, dest values override src