Skip to content

Commit

Permalink
Bump test timeouts
Browse files Browse the repository at this point in the history
Checking if this is the cause of the osx failures
  • Loading branch information
djherbis authored Nov 27, 2023
1 parent 0c81add commit 442a07e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fscache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ func TestLRUHaunterMaxItems(t *testing.T) {
}
}

<-time.After(400 * time.Millisecond)
<-time.After(1 * time.Second)

if c.Exists("stream-0") {
t.Errorf("stream-0 should have been scrubbed")
Expand Down Expand Up @@ -360,7 +360,7 @@ func TestLRUHaunterMaxSize(t *testing.T) {
}
}

<-time.After(400 * time.Millisecond)
<-time.After(1 * time.Second)

if c.Exists("stream-0") {
t.Errorf("stream-0 should have been scrubbed")
Expand Down

0 comments on commit 442a07e

Please sign in to comment.