diff --git a/suite/interfaces.go b/suite/interfaces.go index b37cb0409..b55db4362 100644 --- a/suite/interfaces.go +++ b/suite/interfaces.go @@ -1,12 +1,10 @@ package suite -import "testing" - // TestingSuite can store and return the current *testing.T context // generated by 'go test'. type TestingSuite interface { - T() *testing.T - SetT(*testing.T) + T() TestingT + SetT(TestingT) } // SetupAllSuite has a SetupSuite method, which will run before the