Skip to content

Commit

Permalink
increase wait time after create channel
Browse files Browse the repository at this point in the history
  • Loading branch information
trinitys7 committed Mar 20, 2024
1 parent e54a4c6 commit b0763eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/ibc_pfm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func TestIBCTransferMultiHop(t *testing.T) {
})
require.NoError(t, err)

err = testutil.WaitForBlocks(ctx, 15, rollapp1, gaia)
err = testutil.WaitForBlocks(ctx, 20, rollapp1, gaia)
require.NoError(t, err)

channsDym, err := r.GetChannels(ctx, eRep, dymension.GetChainID())
Expand Down Expand Up @@ -197,7 +197,7 @@ func TestIBCTransferMultiHop(t *testing.T) {
})
require.NoError(t, err)

err = testutil.WaitForBlocks(ctx, 15, dymension, gaia)
err = testutil.WaitForBlocks(ctx, 20, dymension, gaia)
require.NoError(t, err)

channsDym, err = r.GetChannels(ctx, eRep, dymension.GetChainID())
Expand Down
4 changes: 2 additions & 2 deletions tests/ibc_pfm_with_grace_period_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ func TestIBCPFMWithGracePeriod(t *testing.T) {
})
require.NoError(t, err)

err = testutil.WaitForBlocks(ctx, 15, rollapp1, gaia)
err = testutil.WaitForBlocks(ctx, 20, rollapp1, gaia)
require.NoError(t, err)

channsDym, err := r.GetChannels(ctx, eRep, dymension.GetChainID())
Expand Down Expand Up @@ -219,7 +219,7 @@ func TestIBCPFMWithGracePeriod(t *testing.T) {
})
require.NoError(t, err)

err = testutil.WaitForBlocks(ctx, 15, dymension, gaia)
err = testutil.WaitForBlocks(ctx, 20, dymension, gaia)
require.NoError(t, err)

channsDym, err = r.GetChannels(ctx, eRep, dymension.GetChainID())
Expand Down

0 comments on commit b0763eb

Please sign in to comment.