From b0763ebc6ed4495804a5851a264ce4f58badf8c3 Mon Sep 17 00:00:00 2001 From: Trinity Date: Wed, 20 Mar 2024 15:23:34 +0700 Subject: [PATCH] increase wait time after create channel --- tests/ibc_pfm_test.go | 4 ++-- tests/ibc_pfm_with_grace_period_test.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/ibc_pfm_test.go b/tests/ibc_pfm_test.go index b0ed1937..c7317286 100644 --- a/tests/ibc_pfm_test.go +++ b/tests/ibc_pfm_test.go @@ -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()) @@ -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()) diff --git a/tests/ibc_pfm_with_grace_period_test.go b/tests/ibc_pfm_with_grace_period_test.go index e0fe50a5..65a8ebec 100644 --- a/tests/ibc_pfm_with_grace_period_test.go +++ b/tests/ibc_pfm_with_grace_period_test.go @@ -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()) @@ -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())