From 7240b22a68f236247a897dda7f80efcc4df9023a Mon Sep 17 00:00:00 2001 From: Greg Soltis Date: Tue, 8 Feb 2022 08:47:39 -0800 Subject: [PATCH] Bump timeout to make windows tests more likely to pass while still ensuring we are not running in sequence --- cli/internal/process/manager_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/internal/process/manager_test.go b/cli/internal/process/manager_test.go index 172aed4246d6b..ccf5eccc273a3 100644 --- a/cli/internal/process/manager_test.go +++ b/cli/internal/process/manager_test.go @@ -54,7 +54,8 @@ func TestExec_multiple(t *testing.T) { wg.Wait() end := time.Now() duration := end.Sub(start) - if duration > 300*time.Millisecond { + // running all in sequence would total 600ms + if duration > 450*time.Millisecond { t.Errorf("expected parallel execution, total time was %q", duration) } for _, err := range errors {