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>
  • Loading branch information
gjenkins8 committed Feb 8, 2024
1 parent 68294fd commit 8d19bcb
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 @@ -621,20 +621,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 8d19bcb

Please sign in to comment.