add error messages

Signed-off-by: George Jenkins <gvjenkins@gmail.com>
pull/12789/head
George Jenkins 5 months ago
parent 68294fdae0
commit 8d19bcb78a

@ -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")
}
})

Loading…
Cancel
Save