Merge pull request #1243 from cloudskiff/fix/acc_retry_test

Fix inconsistent test for RetryFor
main
Elie 2021-11-29 11:29:10 +01:00 committed by GitHub
commit ca60550a84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ func TestRetryFor(t *testing.T) {
}{
{
name: "success on first try",
timeout: 1 * time.Millisecond,
timeout: 100 * time.Millisecond,
f: func(c chan struct{}) error {
c <- struct{}{}
return nil