Skip to content

Commit 75f5c07

Browse files
authored
Merge pull request docker#11023 from glours/fix-watch-e2e-test-cleanup
remove --timeout=0 flag to cleanup function of watch e2e test
2 parents 421a6b0 + 61c8be1 commit 75f5c07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/e2e/watch_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ func doTest(t *testing.T, svcName string, tarSync bool) {
8484

8585
// important that --rmi is used to prune the images and ensure that watch builds on launch
8686
cleanup := func() {
87-
cli.RunDockerComposeCmd(t, "down", svcName, "--timeout=0", "--remove-orphans", "--volumes", "--rmi=local")
87+
cli.RunDockerComposeCmd(t, "down", svcName, "--remove-orphans", "--volumes", "--rmi=local")
8888
}
8989
cleanup()
9090
t.Cleanup(cleanup)

0 commit comments

Comments
 (0)