From f9d11100fe433dd639a5e7c0ae3be0c03e73f20d Mon Sep 17 00:00:00 2001 From: Akash Shinde Date: Thu, 22 Aug 2019 20:06:07 +0530 Subject: [PATCH] Add question comment about the failing test Signed-off-by: Akash Shinde --- pkg/repo/repo_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkg/repo/repo_test.go b/pkg/repo/repo_test.go index 1bdc5044f..f97bf0860 100644 --- a/pkg/repo/repo_test.go +++ b/pkg/repo/repo_test.go @@ -16,7 +16,9 @@ limitations under the License. package repo -import "testing" +import ( + "testing" +) import "io/ioutil" import "os" @@ -198,6 +200,7 @@ func TestWriteFile(t *testing.T) { } } +// FIXME: Do we need this test ? It's failing since we don't need helm init. //func TestRepoNotExists(t *testing.T) { // _, err := LoadFile("/this/path/does/not/exist.yaml") // if err == nil {