From cf5e158f0d67f81d2b12b4eefc174ff11ce45cb0 Mon Sep 17 00:00:00 2001 From: Michelle Noorali Date: Thu, 18 Aug 2016 13:02:47 -0400 Subject: [PATCH] chore(helm): fix golint errors --- cmd/helm/install_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/helm/install_test.go b/cmd/helm/install_test.go index 7bc44702e..61bb8eb9a 100644 --- a/cmd/helm/install_test.go +++ b/cmd/helm/install_test.go @@ -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) } }