From 74aeb0350e8a3cd73646bbfe45cfee8901f0cf28 Mon Sep 17 00:00:00 2001 From: John Howard Date: Mon, 28 Sep 2015 13:40:17 -0700 Subject: [PATCH] TestRunUnknownCommand 30s, not 30ns Signed-off-by: John Howard --- integration-cli/docker_cli_run_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_run_test.go b/integration-cli/docker_cli_run_test.go index dca1c0e2c5..093e64b287 100644 --- a/integration-cli/docker_cli_run_test.go +++ b/integration-cli/docker_cli_run_test.go @@ -2140,7 +2140,7 @@ func (s *DockerSuite) TestRunUnknownCommand(c *check.C) { // the command which will fail. if daemonPlatform == "windows" { // Wait for it to exit. - waitExited(cID, 30) + waitExited(cID, 30*time.Second) c.Assert(err, check.IsNil) } else { c.Assert(err, check.NotNil)