Don't write fake logs to the real test log

This caused consternation as errors were logged but tests did not fail.
It was expected to log!
This commit is contained in:
Tim Hockin 2021-11-09 22:54:03 -08:00
parent 6ac2d8edc8
commit 049e158a8f

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()