add error messages

Signed-off-by: George Jenkins <gvjenkins@gmail.com>
(cherry picked from commit 8d19bcb78a)
release-3.14
George Jenkins 2 years ago committed by Matt Farina
parent d6acc0027d
commit 1a7330fe38
No known key found for this signature in database
GPG Key ID: 92C44A3D421FF7F9

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

Loading…
Cancel
Save