Skip to content

Commit

Permalink
fix: increase timeout 2
Browse files Browse the repository at this point in the history
Signed-off-by: gfanton <[email protected]>
  • Loading branch information
gfanton committed Dec 20, 2024
1 parent eb3702a commit de031ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gno.land/pkg/integration/fork_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ import (
)

func TestForkGnoland(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*10)
t.Parallel()

ctx, cancel := context.WithTimeout(context.Background(), time.Second*30)
defer cancel()

tmpdir := t.TempDir()
Expand Down

0 comments on commit de031ca

Please sign in to comment.