diff --git a/pkg/engine/engine_test.go b/pkg/engine/engine_test.go index ec19f8ded..ef71bbd0c 100644 --- a/pkg/engine/engine_test.go +++ b/pkg/engine/engine_test.go @@ -290,20 +290,24 @@ global: t.Fatalf("failed to render templates: %s", err) } - if out["top/"+outerpath] != "Gather ye rosebuds while ye may" { - t.Errorf("Unexpected outer: %q", out[outerpath]) + fullouterpath := "top/" + outerpath + if out[fullouterpath] != "Gather ye rosebuds while ye may" { + t.Errorf("Unexpected outer: %q", out[fullouterpath]) } - if out["top/charts/herrick/"+innerpath] != "Old time is still a-flyin'" { - t.Errorf("Unexpected inner: %q", out[innerpath]) + fullinnerpath := "top/charts/herrick/" + innerpath + if out[fullinnerpath] != "Old time is still a-flyin'" { + t.Errorf("Unexpected inner: %q", out[fullinnerpath]) } - if out["top/charts/herrick/charts/deepest/"+deepestpath] != "And this same flower that smiles to-day" { - t.Errorf("Unexpected deepest: %q", out[deepestpath]) + fulldeepestpath := "top/charts/herrick/charts/deepest/" + deepestpath + if out[fulldeepestpath] != "And this same flower that smiles to-day" { + t.Errorf("Unexpected deepest: %q", out[fulldeepestpath]) } - if out["top/charts/herrick/charts/deepest/"+checkrelease] != "Tomorrow will be dyin" { - t.Errorf("Unexpected release: %q", out[checkrelease]) + fullcheckrelease := "top/charts/herrick/charts/deepest/" + checkrelease + if out[fullcheckrelease] != "Tomorrow will be dyin" { + t.Errorf("Unexpected release: %q", out[fullcheckrelease]) } }