From a022d0510ecf42ea209a64345ec0d4bf6e7b5112 Mon Sep 17 00:00:00 2001 From: Matt Schultz <975680+schultz-is@users.noreply.github.com> Date: Mon, 31 Jan 2022 12:01:48 -0600 Subject: [PATCH] Bump timeout for gauge testing to 500 ms from 100 ms. (#13836) --- helper/metricsutil/gauge_process_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper/metricsutil/gauge_process_test.go b/helper/metricsutil/gauge_process_test.go index d5da81248e..5e83e6fe45 100644 --- a/helper/metricsutil/gauge_process_test.go +++ b/helper/metricsutil/gauge_process_test.go @@ -332,7 +332,7 @@ func waitForDone(t *testing.T, done <-chan struct{}, ) int { t.Helper() - timeout := time.After(100 * time.Millisecond) + timeout := time.After(500 * time.Millisecond) numTicks := 0 for {