Commit a4458085 authored by Adnan Abdulhussein's avatar Adnan Abdulhussein

fix(lint): fix tests

parent dda61f60
......@@ -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)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment