Merge pull request #111377 from chendave/v1beta3

No need to assert an error when the error is not nil
This commit is contained in:
Kubernetes Prow Robot 2022-07-25 12:22:45 -07:00 committed by GitHub
commit 17efdc6efb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1163,7 +1163,7 @@ profiles:
}
return
}
assert.NoError(t, err)
t.Errorf("unexpected error to create a config: %v", err)
return
}