helper/resource: Fix TestRetry

This commit is contained in:
Radek Simko 2016-03-10 14:10:34 +00:00
parent 2dc1c022d3
commit 8582f4df9f
1 changed files with 2 additions and 2 deletions

View File

@ -12,14 +12,14 @@ func TestRetry(t *testing.T) {
tries := 0
f := func() *RetryError {
tries++
if tries == 1 {
if tries == 3 {
return nil
}
return RetryableError(fmt.Errorf("error"))
}
err := Retry(2*time.Second, f)
err := Retry(10*time.Second, f)
if err != nil {
t.Fatalf("err: %s", err)
}