From 9dfcf7c562f3d684d583301ebe0227af657513c9 Mon Sep 17 00:00:00 2001 From: Chris K Date: Tue, 4 Feb 2020 13:19:15 -0800 Subject: [PATCH] suite: make suite.TestingT satisfy mock.TestingT ...by adding Logf method. --- suite/suite.go | 1 + 1 file changed, 1 insertion(+) diff --git a/suite/suite.go b/suite/suite.go index 6e54781..6eaaed1 100644 --- a/suite/suite.go +++ b/suite/suite.go @@ -22,6 +22,7 @@ type TestingT interface { Errorf(format string, args ...interface{}) FailNow() Log(args ...interface{}) + Logf(format string, args ...interface{}) Skip(args ...interface{}) }