fix(lint): fix tests

pull/922/head
Adnan Abdulhussein 9 years ago
parent dda61f6074
commit a4458085ab

@ -26,11 +26,11 @@ var (
) )
func TestLintChart(t *testing.T) { func TestLintChart(t *testing.T) {
if err := lintChart(chartDirPath); err != nil { if _, err := lintChart(chartDirPath); err != nil {
t.Errorf("%s", err) t.Errorf("%s", err)
} }
if err := lintChart(archivedChartPath); err != nil { if _, err := lintChart(archivedChartPath); err != nil {
t.Errorf("%s", err) t.Errorf("%s", err)
} }

Loading…
Cancel
Save