rm-gocheck: comment out check.TestingT

sed -E -i 's#([^*])(check\.TestingT\([^\)]+\))#\1/*\2*/#g' \
-- "integration-cli/check_test.go" "pkg/discovery/discovery_test.go" "pkg/discovery/file/file_test.go" "pkg/discovery/kv/kv_test.go" "pkg/discovery/memory/memory_test.go" "pkg/discovery/nodes/nodes_test.go"

Signed-off-by: Tibor Vass <tibor@docker.com>
(cherry picked from commit eb67bb9fb5)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Tibor Vass 2019-09-09 21:05:58 +00:00 committed by Sebastiaan van Stijn
parent bbcad73a27
commit d523748a4f
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
6 changed files with 6 additions and 6 deletions

View File

@ -73,7 +73,7 @@ func Test(t *testing.T) {
cli.SetTestEnvironment(testEnv)
fakestorage.SetTestEnvironment(&testEnv.Execution)
ienv.ProtectAll(t, &testEnv.Execution)
check.TestingT(t)
/*check.TestingT(t)*/
}
func init() {

View File

@ -7,7 +7,7 @@ import (
)
// Hook up gocheck into the "go test" runner.
func Test(t *testing.T) { check.TestingT(t) }
func Test(t *testing.T) { /*check.TestingT(t)*/ }
type DiscoverySuite struct{}

View File

@ -11,7 +11,7 @@ import (
)
// Hook up gocheck into the "go test" runner.
func Test(t *testing.T) { check.TestingT(t) }
func Test(t *testing.T) { /*check.TestingT(t)*/ }
type DiscoverySuite struct{}

View File

@ -15,7 +15,7 @@ import (
)
// Hook up gocheck into the "go test" runner.
func Test(t *testing.T) { check.TestingT(t) }
func Test(t *testing.T) { /*check.TestingT(t)*/ }
type DiscoverySuite struct{}

View File

@ -8,7 +8,7 @@ import (
)
// Hook up gocheck into the "go test" runner.
func Test(t *testing.T) { check.TestingT(t) }
func Test(t *testing.T) { /*check.TestingT(t)*/ }
type discoverySuite struct{}

View File

@ -9,7 +9,7 @@ import (
)
// Hook up gocheck into the "go test" runner.
func Test(t *testing.T) { check.TestingT(t) }
func Test(t *testing.T) { /*check.TestingT(t)*/ }
type DiscoverySuite struct{}