Browse code

Fix TestExecApiStartWithDetach on WindowsTP4

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Vincent Demeester authored on 2016/02/25 22:27:22
Showing 1 changed files
... ...
@@ -125,7 +125,7 @@ func (s *DockerSuite) TestExecApiStartMultipleTimesError(c *check.C) {
125 125
 // #20638
126 126
 func (s *DockerSuite) TestExecApiStartWithDetach(c *check.C) {
127 127
 	name := "foo"
128
-	dockerCmd(c, "run", "-d", "-t", "--name", name, "busybox", "top")
128
+	runSleepingContainer(c, "-d", "-t", "--name", name)
129 129
 	data := map[string]interface{}{
130 130
 		"cmd":         []string{"true"},
131 131
 		"AttachStdin": true,