fix(helm): fixed small typo causing failed test

Missed not a map, causing failed test.

Signed off by: Jeremy Farrell <farrjere@isu.edu>

Signed-off-by: Jeremy Farrell <farrjere@isu.edu>
pull/12367/head
Jeremy Farrell 2 years ago
parent 9056e11a21
commit f84f6d91eb

@ -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 // If the original value is nil, there is nothing to coalesce, so we don't print
// the warning // the warning
if val != nil { 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 { } else {
// Because v has higher precedence than nv, dest values override src // Because v has higher precedence than nv, dest values override src

Loading…
Cancel
Save