Increase timeout in TestRunInteractiveWithRestartPolicy
| ... | ... |
@@ -1864,7 +1864,7 @@ func (s *DockerSuite) TestRunInteractiveWithRestartPolicy(c *check.C) {
|
| 1864 | 1864 |
dockerCmdWithResult("stop", name).Assert(c, icmd.Success)
|
| 1865 | 1865 |
}() |
| 1866 | 1866 |
|
| 1867 |
- result = icmd.WaitOnCmd(10*time.Second, result) |
|
| 1867 |
+ result = icmd.WaitOnCmd(60*time.Second, result) |
|
| 1868 | 1868 |
c.Assert(result, icmd.Matches, icmd.Expected{ExitCode: 11})
|
| 1869 | 1869 |
} |
| 1870 | 1870 |
|