Update pkg/chart/common/util/coalesce_test.go

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Signed-off-by: Rishabh Pandey <32699563+allexistence@users.noreply.github.com>
This commit is contained in:
Rishabh Pandey 2026-04-25 14:16:02 +08:00 committed by GitHub
parent b91c4f9d28
commit 0378e74fd0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -723,7 +723,7 @@ func TestCoalesceValuesWarnings(t *testing.T) {
t.Logf("vals: %v", vals)
assert.Contains(t, warnings, "warning: skipped value for level1.level2.level3.boat: Not a map/object.")
assert.Contains(t, warnings, "warning: destination for level1.level2.level3.spear.tip is a map/object. Ignoring non-map value (true)")
assert.Contains(t, warnings, "warning: cannot overwrite map/object with non-map value for level1.level2.level3.spear.sail (map[cotton:true])")
assert.Contains(t, warnings, "warning: destination for level1.level2.level3.spear.sail is a non-map value (true). Ignoring map/object value (map[cotton:true])")
}