Windows: Fix TestRunStdinBlockedAfterContainerExit

Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: 4d301f0059c4e2e4ecea1ed41f2c1588b8db6990
Component: engine
This commit is contained in:
John Howard
2015-09-28 14:08:26 -07:00
parent b5b9cbb133
commit e1405c129c

View File

@ -3403,7 +3403,7 @@ func (s *DockerSuite) TestRunStdinBlockedAfterContainerExit(c *check.C) {
select {
case err := <-waitChan:
c.Assert(err, check.IsNil)
case <-time.After(3 * time.Second):
case <-time.After(30 * time.Second):
c.Fatal("timeout waiting for command to exit")
}
}