From a3bc6ee47b206abaf399adeda5f47e96f8abe71b Mon Sep 17 00:00:00 2001 From: Ocenka Date: Fri, 22 Aug 2025 09:41:03 +0100 Subject: [PATCH] Update sync_test.go --- 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 d599e7ecc3..875259ac4e 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(time.Minute): // TODO(karalabe): Make tests smaller, this is too much + case <-time.After(10 * time.Second): // shortened to reduce test runtime t.Log("Sync stalled") term() case <-testDone: