From 33c1adfefc14778b1ab6f58351b5ede550b118fd Mon Sep 17 00:00:00 2001 From: "Christopher A. Stelma" Date: Wed, 21 Nov 2018 12:12:50 -0800 Subject: [PATCH] dev-v3 test fixes --- cmd/helm/init_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/helm/init_test.go b/cmd/helm/init_test.go index c79f736a9..0ae8dcaa8 100644 --- a/cmd/helm/init_test.go +++ b/cmd/helm/init_test.go @@ -19,6 +19,7 @@ package main import ( "bytes" "os" + "path/filepath" "testing" "k8s.io/helm/pkg/helm/helmpath" @@ -43,7 +44,7 @@ func TestEnsureHome(t *testing.T) { t.Error(err) } - rr, err := repo.LoadRepositoriesFile(hh.RepositoryFile()) + rr, err := repo.LoadFile(hh.RepositoryFile()) if err != nil { t.Error(err) }