Skip to content

Commit

Permalink
add error messages
Browse files Browse the repository at this point in the history
Signed-off-by: George Jenkins <gvjenkins@gmail.com>
(cherry picked from commit 8d19bcb)
  • Loading branch information
gjenkins8 authored and mattfarina committed Mar 13, 2024
1 parent d6acc00 commit 1a7330f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/repo/index_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -625,20 +625,20 @@ func TestIgnoreSkippableChartValidationError(t *testing.T) {

if tc.Input == nil {
if result != nil {
t.Error("")
t.Error("expected nil result for nil input")
}
return
}

if tc.ErrorSkipped {
if result != nil {
t.Error("")
t.Error("expected nil result for skipped error")
}
return
}

if tc.Input != result {
t.Error("")
t.Error("expected the result equal to input")
}

})
Expand Down

0 comments on commit 1a7330f

Please sign in to comment.