Merge pull request #3963 from zhsj/flaky-gc-test

gc: increase sleep time in test
This commit is contained in:
Phil Estes 2020-01-15 08:27:07 -05:00 committed by GitHub
commit 5383d31f32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,7 +98,7 @@ func TestDeletionThreshold(t *testing.T) {
select {
case <-gcWait:
case <-time.After(time.Millisecond * 10):
case <-time.After(time.Millisecond * 30):
t.Fatal("GC wait timed out")
}
@ -162,7 +162,7 @@ func TestStartupDelay(t *testing.T) {
defer cancel()
go scheduler.run(ctx)
time.Sleep(time.Millisecond * 5)
time.Sleep(time.Millisecond * 30)
if c := tc.runCount(); c != 1 {
t.Fatalf("unexpected gc run count %d, expected 1", c)