From 9a29037e0f12de84403f350aa1162f3eed7d32c2 Mon Sep 17 00:00:00 2001 From: Djordje Lukic Date: Thu, 13 Aug 2020 09:50:06 +0200 Subject: [PATCH] Put 40 seconds for timeout instead of 20 For some reason this test fails on CI with a timeout. --- tests/e2e/e2e_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/e2e_test.go b/tests/e2e/e2e_test.go index 8a9376185..e61ae481e 100644 --- a/tests/e2e/e2e_test.go +++ b/tests/e2e/e2e_test.go @@ -299,7 +299,7 @@ func TestLegacy(t *testing.T) { t.Run("local run", func(t *testing.T) { t.Parallel() cmd := c.NewDockerCmd("run", "--rm", "hello-world") - cmd.Timeout = 20 * time.Second + cmd.Timeout = 40 * time.Second res := icmd.RunCmd(cmd) res.Assert(t, icmd.Expected{Out: "Hello from Docker!"}) })