1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #27078 from darrenstahlmsft/InteractiveRestartTest

Increase timeout in TestRunInteractiveWithRestartPolicy
This commit is contained in:
Michael Crosby 2016-10-03 11:22:33 -07:00 committed by GitHub
commit e22d4b9654

View file

@ -1864,7 +1864,7 @@ func (s *DockerSuite) TestRunInteractiveWithRestartPolicy(c *check.C) {
dockerCmdWithResult("stop", name).Assert(c, icmd.Success)
}()
result = icmd.WaitOnCmd(10*time.Second, result)
result = icmd.WaitOnCmd(60*time.Second, result)
c.Assert(result, icmd.Matches, icmd.Expected{ExitCode: 11})
}