From be3c1ef10629cb559cb96c1526bcec96ff3f61b1 Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Tue, 7 Jan 2020 09:59:25 -0800 Subject: [PATCH] bump the timeout to a very high level to protect against laggy CI machines --- builder/vmware/common/step_shutdown_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/vmware/common/step_shutdown_test.go b/builder/vmware/common/step_shutdown_test.go index 0c3d98589..c59f495e6 100644 --- a/builder/vmware/common/step_shutdown_test.go +++ b/builder/vmware/common/step_shutdown_test.go @@ -62,7 +62,7 @@ func TestStepShutdown_command(t *testing.T) { var action multistep.StepAction select { case action = <-resultCh: - case <-time.After(300 * time.Millisecond): + case <-time.After(5 * time.Second): t.Fatal("should've returned by now") }