chore(helm): fix golint errors

pull/1074/head
Michelle Noorali 9 years ago
parent a124b4f56f
commit cf5e158f0d

@ -124,18 +124,18 @@ sailor: sinbad
// Combined case, overriding a property // Combined case, overriding a property
vals["sailor"] = "pisti" vals["sailor"] = "pisti"
updated_yaml := `good: true updatedYAML := `good: true
port: port:
destination: basrah destination: basrah
source: baghdad source: baghdad
sailor: pisti sailor: pisti
` `
new_out, err := vobj.yaml() newOut, err := vobj.yaml()
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
if string(new_out) != updated_yaml { if string(newOut) != updatedYAML {
t.Errorf("Expected YAML to be \n%s\nGot\n%s\n", updated_yaml, new_out) t.Errorf("Expected YAML to be \n%s\nGot\n%s\n", updatedYAML, newOut)
} }
} }

Loading…
Cancel
Save