Loosen up the timing on an Eventually to avoid CI timeout

Signed-off-by: Joe Blubaugh <joe.blubaugh@grafana.com>
This commit is contained in:
Joe Blubaugh 2022-03-29 12:52:13 +08:00
parent c9249a02bc
commit 0c3bf4b6ce
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ func TestSilences_Maintenance_SupportsCustomCallback(t *testing.T) {
require.Eventually(t, func() bool {
return calls.Load() == 2
}, 1*time.Millisecond, 50*time.Microsecond)
}, 100*time.Millisecond, 1*time.Millisecond)
}
func TestSilencesSetSilence(t *testing.T) {