Browse Source

speed up DockerDaemonSuite.TestDaemonRestartWithContainerRunning

Signed-off-by: Shijiang Wei <mountkin@gmail.com>
Shijiang Wei 9 years ago
parent
commit
c983996e0b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      integration-cli/docker_cli_daemon_test.go

+ 1 - 1
integration-cli/docker_cli_daemon_test.go

@@ -1590,7 +1590,7 @@ func (s *DockerDaemonSuite) TestDaemonRestartWithContainerRunning(t *check.C) {
 	if err := s.d.StartWithBusybox(); err != nil {
 	if err := s.d.StartWithBusybox(); err != nil {
 		t.Fatal(err)
 		t.Fatal(err)
 	}
 	}
-	if out, err := s.d.Cmd("run", "-ti", "-d", "--name", "test", "busybox"); err != nil {
+	if out, err := s.d.Cmd("run", "-d", "--name", "test", "busybox", "top"); err != nil {
 		t.Fatal(out, err)
 		t.Fatal(out, err)
 	}
 	}