From a4458085ab610d52f192ce85085680f1a369cf05 Mon Sep 17 00:00:00 2001 From: Adnan Abdulhussein Date: Wed, 6 Jul 2016 10:04:21 -0700 Subject: [PATCH] fix(lint): fix tests --- cmd/helm/lint_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/helm/lint_test.go b/cmd/helm/lint_test.go index b7e3db6c6..9f71c0231 100644 --- a/cmd/helm/lint_test.go +++ b/cmd/helm/lint_test.go @@ -26,11 +26,11 @@ var ( ) func TestLintChart(t *testing.T) { - if err := lintChart(chartDirPath); err != nil { + if _, err := lintChart(chartDirPath); err != nil { t.Errorf("%s", err) } - if err := lintChart(archivedChartPath); err != nil { + if _, err := lintChart(archivedChartPath); err != nil { t.Errorf("%s", err) }