Browse code

Windows: Fix TestRunStdinBlockedAfterContainerExit

Signed-off-by: John Howard <jhoward@microsoft.com>

John Howard authored on 2015/09/29 06:08:26
Showing 1 changed files
... ...
@@ -3403,7 +3403,7 @@ func (s *DockerSuite) TestRunStdinBlockedAfterContainerExit(c *check.C) {
3403 3403
 	select {
3404 3404
 	case err := <-waitChan:
3405 3405
 		c.Assert(err, check.IsNil)
3406
-	case <-time.After(3 * time.Second):
3406
+	case <-time.After(30 * time.Second):
3407 3407
 		c.Fatal("timeout waiting for command to exit")
3408 3408
 	}
3409 3409
 }