summaryrefslogtreecommitdiff
path: root/integration-cli/docker_cli_cp_test.go
diff options
context:
space:
mode:
authorDaniel Nephin <dnephin@docker.com>2017-08-22 17:07:52 -0400
committerDaniel Nephin <dnephin@docker.com>2017-08-22 17:15:26 -0400
commite885af2a6b6b9f88a8b419d225b1425ec3d9416e (patch)
tree018d7d7ad56d5642c46ccfbb163f54ced82c2128 /integration-cli/docker_cli_cp_test.go
parent9db68f4dea6379b7e85ee5c6f2be080a6fcbe4ca (diff)
downloaddocker-e885af2a6b6b9f88a8b419d225b1425ec3d9416e.tar.gz
Remove RunCommandPipelineWithOutput
Signed-off-by: Daniel Nephin <dnephin@docker.com>
Diffstat (limited to 'integration-cli/docker_cli_cp_test.go')
-rw-r--r--integration-cli/docker_cli_cp_test.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/integration-cli/docker_cli_cp_test.go b/integration-cli/docker_cli_cp_test.go
index f7ed459194..743398ca21 100644
--- a/integration-cli/docker_cli_cp_test.go
+++ b/integration-cli/docker_cli_cp_test.go
@@ -11,7 +11,6 @@ import (
"strings"
"github.com/docker/docker/integration-cli/checker"
- "github.com/docker/docker/pkg/testutil"
icmd "github.com/docker/docker/pkg/testutil/cmd"
"github.com/go-check/check"
)
@@ -548,7 +547,7 @@ func (s *DockerSuite) TestCpToStdout(c *check.C) {
// failed to set up container
c.Assert(strings.TrimSpace(out), checker.Equals, "0")
- out, _, err := testutil.RunCommandPipelineWithOutput(
+ out, err := RunCommandPipelineWithOutput(
exec.Command(dockerBinary, "cp", containerID+":/test", "-"),
exec.Command("tar", "-vtf", "-"))