Skip to content

Commit

Permalink
raise time test
Browse files Browse the repository at this point in the history
  • Loading branch information
Villaquiranm committed Nov 24, 2024
1 parent c0fa3db commit cd84306
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gno.land/cmd/gnoland/start_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down

0 comments on commit cd84306

Please sign in to comment.