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

Increase timeouts to fix test on ARM

Signed-off-by: Stefan Scherer <scherer_stefan@icloud.com>
This commit is contained in:
Stefan Scherer 2015-11-20 23:12:12 +01:00
parent d395134b3d
commit 88c1bc10c4
5 changed files with 6 additions and 6 deletions

View file

@ -35,7 +35,7 @@ func (s *DockerSuite) TestExecInteractiveStdinClose(c *check.C) {
c.Assert(err, checker.IsNil)
output := b.String()
c.Assert(strings.TrimSpace(output), checker.Equals, "hello")
case <-time.After(1 * time.Second):
case <-time.After(5 * time.Second):
c.Fatal("timed out running docker exec")
}
}