Merge pull request #106297 from thockin/svc-testlog-hush

Don't write fake logs to the real test log
This commit is contained in:
Kubernetes Prow Robot 2021-11-09 23:59:26 -08:00 committed by GitHub
commit 0c6110e412
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -823,9 +823,7 @@ type fakeTestingT struct {
func (f fakeTestingT) Helper() {}
func (f fakeTestingT) Errorf(format string, args ...interface{}) {
f.t.Logf(format, args...)
}
func (f fakeTestingT) Errorf(format string, args ...interface{}) {}
func verifyEquiv(t testingTInterface, call string, tc *svcTestCase, got *api.Service) bool {
t.Helper()