Skip to content

Commit

Permalink
fix: increase timeout
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 ddef133 commit eb3702a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gno.land/pkg/integration/testscript_gnoland.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ func gnolandCmd(t *testing.T, nodesManager *NodesManager, gnolandBin, gnoRootDir
}
}

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

dbdir := ts.Getenv("GNO_DBDIR")
Expand Down Expand Up @@ -312,7 +312,7 @@ func gnolandCmd(t *testing.T, nodesManager *NodesManager, gnolandBin, gnoRootDir
}

fmt.Println("STOP DONE")
ctx, cancel := context.WithTimeout(context.Background(), time.Second*20)
ctx, cancel := context.WithTimeout(context.Background(), time.Second*30)
defer cancel()

priv := ts.Value("PK").(ed25519.PrivKeyEd25519)
Expand Down

0 comments on commit eb3702a

Please sign in to comment.