Skip to content

Commit 87f0bc4

Browse files
committed
raise time test
1 parent c0fa3db commit 87f0bc4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gno.land/cmd/gnoland/start_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func TestStart_Lazy(t *testing.T) {
117117

118118
// Create and run the command
119119
// Now lazy init takes longer as we're signing each transaction
120-
ctx, cancelFn := context.WithTimeout(context.Background(), 100*time.Second)
120+
ctx, cancelFn := context.WithTimeout(context.Background(), 200*time.Second)
121121
defer cancelFn()
122122

123123
// Set up the command ctx
@@ -129,7 +129,7 @@ func TestStart_Lazy(t *testing.T) {
129129
})
130130

131131
// Set up the retry ctx
132-
retryCtx, retryCtxCancelFn := context.WithTimeout(ctx, 100*time.Hour)
132+
retryCtx, retryCtxCancelFn := context.WithTimeout(ctx, 200*time.Hour)
133133
defer retryCtxCancelFn()
134134

135135
// This is a very janky way to verify the node has started.

0 commit comments

Comments
 (0)