From fcef7e2d8589dea1dfbc3c9c38a8e4e732fe55d0 Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Wed, 21 Aug 2019 16:36:42 -0700 Subject: [PATCH] this timeout regularly flakes on Travis, I suspect because the instances running the tests are brutally underpowered. Increase the fudge factor. --- builder/googlecompute/step_instance_info_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/googlecompute/step_instance_info_test.go b/builder/googlecompute/step_instance_info_test.go index 86f718369..e3d0febaf 100644 --- a/builder/googlecompute/step_instance_info_test.go +++ b/builder/googlecompute/step_instance_info_test.go @@ -149,7 +149,7 @@ func TestStepInstanceInfo_errorTimeout(t *testing.T) { errCh := make(chan error, 1) go func() { - <-time.After(10 * time.Millisecond) + <-time.After(50 * time.Millisecond) errCh <- nil }()