mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
Merge pull request #2982 from HotelsDotCom/pkg-lint-test-panics
Avoid panics if test is failing
This commit is contained in:
commit
b600ea475e
1 changed files with 2 additions and 2 deletions
|
|
@ -68,7 +68,7 @@ func TestBadChart(t *testing.T) {
|
|||
func TestInvalidYaml(t *testing.T) {
|
||||
m := All(badYamlFileDir).Messages
|
||||
if len(m) != 1 {
|
||||
t.Errorf("All didn't fail with expected errors, got %#v", m)
|
||||
t.Fatalf("All didn't fail with expected errors, got %#v", m)
|
||||
}
|
||||
if !strings.Contains(m[0].Err.Error(), "deliberateSyntaxError") {
|
||||
t.Errorf("All didn't have the error for deliberateSyntaxError")
|
||||
|
|
@ -78,7 +78,7 @@ func TestInvalidYaml(t *testing.T) {
|
|||
func TestBadValues(t *testing.T) {
|
||||
m := All(badValuesFileDir).Messages
|
||||
if len(m) != 1 {
|
||||
t.Errorf("All didn't fail with expected errors, got %#v", m)
|
||||
t.Fatalf("All didn't fail with expected errors, got %#v", m)
|
||||
}
|
||||
if !strings.Contains(m[0].Err.Error(), "cannot unmarshal") {
|
||||
t.Errorf("All didn't have the error for invalid key format: %s", m[0].Err)
|
||||
|
|
|
|||
Loading…
Reference in a new issue