Bump timeout for gauge testing to 500 ms from 100 ms. (#13836)

This commit is contained in:
Matt Schultz 2022-01-31 12:01:48 -06:00 committed by GitHub
parent 935b12a1f9
commit a022d0510e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {