Browse code

Fix flaky TestUpdateRestartPolicy on Windows

Add another 30 seconds, because it still fails sometimes :'(

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2016/03/14 20:49:24
Showing 1 changed files
... ...
@@ -12,7 +12,7 @@ func (s *DockerSuite) TestUpdateRestartPolicy(c *check.C) {
12 12
 	out, _ := dockerCmd(c, "run", "-d", "--restart=on-failure:3", "busybox", "sh", "-c", "sleep 1 && false")
13 13
 	timeout := 60 * time.Second
14 14
 	if daemonPlatform == "windows" {
15
-		timeout = 150 * time.Second
15
+		timeout = 180 * time.Second
16 16
 	}
17 17
 
18 18
 	id := strings.TrimSpace(string(out))