From d68e894fba4eab3e308c3323758467065f06cba5 Mon Sep 17 00:00:00 2001 From: Zaur Abasmirzoev Date: Mon, 16 Jun 2014 20:06:15 +0400 Subject: [PATCH] Clear staff --- suite/doc.go | 4 ++-- suite/suite.go | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) 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()