From 623e0705c52caa63d8a67e548d94fa907423a534 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Fri, 27 May 2022 15:58:38 -0400 Subject: [PATCH] fix: increase timeout --- waku/v2/node/wakunode2_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waku/v2/node/wakunode2_test.go b/waku/v2/node/wakunode2_test.go index 52407798..f26d42a0 100644 --- a/waku/v2/node/wakunode2_test.go +++ b/waku/v2/node/wakunode2_test.go @@ -48,7 +48,7 @@ func Test5000(t *testing.T) { maxMsgs := 5000 maxMsgBytes := int2Bytes(maxMsgs) - ctx, cancel := context.WithTimeout(context.Background(), 20*time.Second) + ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second) defer cancel() hostAddr1, _ := net.ResolveTCPAddr("tcp", "0.0.0.0:0")