eth/protocols/snap: revert change to test time

This commit is contained in:
lightclient 2025-08-22 10:27:43 -06:00
parent 55190c9e99
commit 84d2e2289d
No known key found for this signature in database
GPG key ID: 657913021EF45A6A

View file

@ -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: