Correct the returned message in reset_test.go

Correct the returned message
pull/3906/head
AdamDang 7 years ago committed by GitHub
parent 3eb1f59f71
commit fac7caf5d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -123,7 +123,7 @@ func verifyResetCmd(t *testing.T, tc resetCase) {
}
_, err = os.Stat(home)
if !tc.removeHelmHome && err != nil {
t.Errorf("Helm home directory %s does not exists", home)
t.Errorf("Helm home directory %s does not exist", home)
}
if tc.removeHelmHome && err == nil {
t.Errorf("Helm home directory %s exists", home)

Loading…
Cancel
Save