integration-cli: remove TestingT

Signed-off-by: Tibor Vass <tibor@docker.com>
This commit is contained in:
Tibor Vass 2019-09-09 21:45:43 +00:00
parent d32e6bbde8
commit 231ed42cab
2 changed files with 1 additions and 5 deletions

View File

@ -30,10 +30,6 @@ type testingT interface {
Fatalf(string, ...interface{})
}
type TestingT interface {
testingT
}
// DockerCmd executes the specified docker command and expect a success
func DockerCmd(t testingT, args ...string) *icmd.Result {
return Docker(Args(args...)).Assert(t, icmd.Success)

View File

@ -40,7 +40,7 @@ func dockerCmdWithError(args ...string) (string, int, error) {
}
// Deprecated: use cli.Docker or cli.DockerCmd
func dockerCmd(c cli.TestingT, args ...string) (string, int) {
func dockerCmd(c testing.TB, args ...string) (string, int) {
result := cli.DockerCmd(c, args...)
return result.Combined(), result.ExitCode
}