summaryrefslogtreecommitdiff
path: root/integration-cli/docker_cli_cp_test.go
diff options
context:
space:
mode:
authorPhil Estes <estesp@linux.vnet.ibm.com>2015-10-13 12:39:05 -0400
committerPhil Estes <estesp@linux.vnet.ibm.com>2015-10-20 12:03:11 -0400
commit414cfe946719a0ba811c95486d523e003d44fcc1 (patch)
tree3721f70855c28667875aead5fc705020a59d2fc9 /integration-cli/docker_cli_cp_test.go
parentad861876e8bb86091527f31fc944205743e5ce85 (diff)
downloaddocker-414cfe946719a0ba811c95486d523e003d44fcc1.tar.gz
Update Dockerfile to use the correct busybox:latest identifier
Also requires some tests to be updated which relied on behavior of a busybox image that wasn't actually "busybox:latest"; meaning these tests were unable to be verified/run against a real busybox:latest image on a daemon. Docker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com> (github: estesp)
Diffstat (limited to 'integration-cli/docker_cli_cp_test.go')
-rw-r--r--integration-cli/docker_cli_cp_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration-cli/docker_cli_cp_test.go b/integration-cli/docker_cli_cp_test.go
index 64be8e2388..adc3adb19d 100644
--- a/integration-cli/docker_cli_cp_test.go
+++ b/integration-cli/docker_cli_cp_test.go
@@ -797,7 +797,7 @@ func (s *DockerSuite) TestCopyAndRestart(c *check.C) {
}
defer os.RemoveAll(tmpDir)
- dockerCmd(c, "cp", fmt.Sprintf("%s:/etc/issue", id), tmpDir)
+ dockerCmd(c, "cp", fmt.Sprintf("%s:/etc/group", id), tmpDir)
out, _ = dockerCmd(c, "start", "-a", id)