From 61c8be11c033416a325498c7b2999f55b01ec282 Mon Sep 17 00:00:00 2001 From: Guillaume Lours <705411+glours@users.noreply.github.com> Date: Tue, 19 Sep 2023 22:04:23 +0200 Subject: [PATCH] remove --timeout=0 flag to cleanup function of watch e2e test compose down command need the watch process to be killed to succeed Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com> --- pkg/e2e/watch_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/e2e/watch_test.go b/pkg/e2e/watch_test.go index ab2d1c5aaf..4a49e680dd 100644 --- a/pkg/e2e/watch_test.go +++ b/pkg/e2e/watch_test.go @@ -84,7 +84,7 @@ func doTest(t *testing.T, svcName string, tarSync bool) { // important that --rmi is used to prune the images and ensure that watch builds on launch cleanup := func() { - cli.RunDockerComposeCmd(t, "down", svcName, "--timeout=0", "--remove-orphans", "--volumes", "--rmi=local") + cli.RunDockerComposeCmd(t, "down", svcName, "--remove-orphans", "--volumes", "--rmi=local") } cleanup() t.Cleanup(cleanup)