mirror of
https://github.com/helm/helm.git
synced 2026-04-14 05:16:40 -04:00
add error messages
Signed-off-by: George Jenkins <gvjenkins@gmail.com>
This commit is contained in:
parent
68294fdae0
commit
8d19bcb78a
1 changed files with 3 additions and 3 deletions
|
|
@ -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…
Reference in a new issue