Merge pull request #3385 from wallrj/e2e-fail-early

Fail early when e2e flag validation fails
This commit is contained in:
jetstack-bot 2020-10-16 11:19:15 +02:00 committed by GitHub
commit f2ce195344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,8 +53,7 @@ func TestE2E(t *testing.T) {
flag.Parse()
if err := framework.DefaultConfig.Validate(); err != nil {
t.Errorf("Invalid test config: %v", err)
t.Fail()
t.Fatalf("Invalid test config: %v", err)
}
gomega.NewWithT(t)