diff --git a/suite/doc.go b/suite/doc.go index 8f9a27b..cc0b762 100644 --- a/suite/doc.go +++ b/suite/doc.go @@ -24,8 +24,8 @@ // func(*testing.T)). // // Regular expression to select test suites specified command-line -// command-line argument "-run". Regular expression to select the -// methods of test suites specified command-line argument "-m". +// argument "-run". Regular expression to select the methods +// of test suites specified command-line argument "-m". // // A crude example: // // Basic imports diff --git a/suite/suite.go b/suite/suite.go index e738deb..17d24cd 100644 --- a/suite/suite.go +++ b/suite/suite.go @@ -54,7 +54,6 @@ func Run(t *testing.T, suite TestingSuite) { if setupTestSuite, ok := suite.(SetupTestSuite); ok { setupTestSuite.SetupTest() } - t.Logf("Call test %q", method.Name) method.Func.Call([]reflect.Value{reflect.ValueOf(suite)}) if tearDownTestSuite, ok := suite.(TearDownTestSuite); ok { tearDownTestSuite.TearDownTest()