From dca7be2281160d1de37dcd672efabf7595a20bc6 Mon Sep 17 00:00:00 2001 From: Keynan Pratt Date: Wed, 29 Jan 2020 08:16:46 +1100 Subject: [PATCH] updated TestingSuite interface to use TestingT --- suite/interfaces.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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