From 84d2e2289dc56c018a821d6cdd839eb71e3942ac Mon Sep 17 00:00:00 2001 From: lightclient Date: Fri, 22 Aug 2025 10:27:43 -0600 Subject: [PATCH] eth/protocols/snap: revert change to test time --- eth/protocols/snap/sync_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: