diff --git a/eth/protocols/snap/sync_test.go b/eth/protocols/snap/sync_test.go index 875259ac4e..d599e7ecc3 100644 --- a/eth/protocols/snap/sync_test.go +++ b/eth/protocols/snap/sync_test.go @@ -948,7 +948,7 @@ func checkStall(t *testing.T, term func()) chan struct{} { testDone := make(chan struct{}) go func() { select { - case <-time.After(10 * time.Second): // shortened to reduce test runtime + case <-time.After(time.Minute): // TODO(karalabe): Make tests smaller, this is too much t.Log("Sync stalled") term() case <-testDone: