Commit cf5e158f authored by Michelle Noorali's avatar Michelle Noorali

chore(helm): fix golint errors

parent a124b4f5
......@@ -124,18 +124,18 @@ sailor: sinbad
// Combined case, overriding a property
vals["sailor"] = "pisti"
updated_yaml := `good: true
updatedYAML := `good: true
port:
destination: basrah
source: baghdad
sailor: pisti
`
new_out, err := vobj.yaml()
newOut, err := vobj.yaml()
if err != nil {
t.Fatal(err)
}
if string(new_out) != updated_yaml {
t.Errorf("Expected YAML to be \n%s\nGot\n%s\n", updated_yaml, new_out)
if string(newOut) != updatedYAML {
t.Errorf("Expected YAML to be \n%s\nGot\n%s\n", updatedYAML, newOut)
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment