From cd84306bccd44b7d9cd4826722a5942601e71e8d Mon Sep 17 00:00:00 2001 From: Miguel Victoria Date: Sun, 24 Nov 2024 16:55:34 +0100 Subject: [PATCH] raise time test --- gno.land/cmd/gnoland/start_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gno.land/cmd/gnoland/start_test.go b/gno.land/cmd/gnoland/start_test.go index f5c9b90e36e..21a51734bd8 100644 --- a/gno.land/cmd/gnoland/start_test.go +++ b/gno.land/cmd/gnoland/start_test.go @@ -117,7 +117,7 @@ func TestStart_Lazy(t *testing.T) { // Create and run the command // Now lazy init takes longer as we're signing each transaction - ctx, cancelFn := context.WithTimeout(context.Background(), 100*time.Second) + ctx, cancelFn := context.WithTimeout(context.Background(), 200*time.Second) defer cancelFn() // Set up the command ctx @@ -129,7 +129,7 @@ func TestStart_Lazy(t *testing.T) { }) // Set up the retry ctx - retryCtx, retryCtxCancelFn := context.WithTimeout(ctx, 100*time.Hour) + retryCtx, retryCtxCancelFn := context.WithTimeout(ctx, 200*time.Hour) defer retryCtxCancelFn() // This is a very janky way to verify the node has started.