summaryrefslogtreecommitdiff
path: root/integration-cli/docker_api_attach_test.go
diff options
context:
space:
mode:
authorSam Whited <sam@samwhited.com>2019-08-29 15:52:40 -0500
committerSam Whited <sam@samwhited.com>2019-09-11 07:47:23 -0500
commitb37c214e3c8c4ff5450bd5fc1225d53827d240e7 (patch)
tree5687180effbed0fef2b57743bbf210fd7fd71af2 /integration-cli/docker_api_attach_test.go
parentcd9e4ec24002fcf3238c1f1e8629e08966c2b7fb (diff)
downloaddocker-b37c214e3c8c4ff5450bd5fc1225d53827d240e7.tar.gz
testutil: make testing packages public
This was done with something along the lines of: ``` mv internal/test testutil pushd testutil/; grep -IRl "package test" | xargs -I '{}' sed -i -e 's|package test|package testutil|g' {}; popd mv internal/testutil/*.go testutil/ && rm -rf internal/ grep -IRl "github.com\/docker\/docker\/internal\/test" | xargs -I '{}' sed -i -e 's|github.com/docker/docker/internal/test|github.com/docker/docker/test|g' {} goimports . ``` I also modified the basic plugin path in testutil/fixtures/plugin. Signed-off-by: Sam Whited <sam@samwhited.com>
Diffstat (limited to 'integration-cli/docker_api_attach_test.go')
-rw-r--r--integration-cli/docker_api_attach_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration-cli/docker_api_attach_test.go b/integration-cli/docker_api_attach_test.go
index 530823e0d3..59b550aa7a 100644
--- a/integration-cli/docker_api_attach_test.go
+++ b/integration-cli/docker_api_attach_test.go
@@ -15,8 +15,8 @@ import (
"github.com/docker/docker/api/types"
"github.com/docker/docker/client"
- "github.com/docker/docker/internal/test/request"
"github.com/docker/docker/pkg/stdcopy"
+ "github.com/docker/docker/testutil/request"
"github.com/pkg/errors"
"golang.org/x/net/websocket"
"gotest.tools/assert"