mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
integration-cli: remove TestingT
Signed-off-by: Tibor Vass <tibor@docker.com>
(cherry picked from commit 231ed42cab
)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
4c3e2dc441
commit
7ae6aa420d
2 changed files with 1 additions and 5 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue