Merge pull request #3906 from AdamDang/patch-7

Correct the returned message in reset_test.go
pull/3912/head
Matthew Fisher 7 years ago committed by GitHub
commit 870827c13b
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