Fix code not gofmtd

pull/839/head^2
Leigh McCulloch 2019-12-07 13:31:06 -08:00 committed by George Lesica
parent 7369010b35
commit 3b0d317f67
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ func Run(t *testing.T, suite TestingSuite) {
defer failOnPanic(t)
suiteSetupDone := false
methodFinder := reflect.TypeOf(suite)
tests := []testing.InternalTest{}
for index := 0; index < methodFinder.NumMethod(); index++ {

View File

@ -350,7 +350,7 @@ func TestRunSuite(t *testing.T) {
type SuiteSetupSkipTester struct {
Suite
setUp bool
setUp bool
toreDown bool
}