From 2cfe6f70e6de9314cf0b75f4abadd76009dfb960 Mon Sep 17 00:00:00 2001 From: Pasto Date: Fri, 18 Feb 2022 15:56:55 -0300 Subject: [PATCH] Extended timeline for e2e tests --- e2e_test/e2e_test.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/e2e_test/e2e_test.go b/e2e_test/e2e_test.go index 74c8f610d7..512a5f72cd 100644 --- a/e2e_test/e2e_test.go +++ b/e2e_test/e2e_test.go @@ -241,7 +241,6 @@ func TestRPCDynamicTxGasPriceWithBigFeeCap(t *testing.T) { // to know the exactly gasPrice expent in a dynamic tx, depends on consuming the // GasPriceMinimum contract func TestRPCDynamicTxGasPriceWithState(t *testing.T) { - t.Skip() // Flaky (deadline exceeded) ac := test.AccountConfig(3, 2) gc, ec, err := test.BuildConfig(ac) ec.TxLookupLimit = 0 @@ -250,7 +249,7 @@ func TestRPCDynamicTxGasPriceWithState(t *testing.T) { network, shutdown, err := test.NewNetwork(ac, gc, ec) require.NoError(t, err) defer shutdown() - ctx, cancel := context.WithTimeout(context.Background(), time.Second*30) + ctx, cancel := context.WithTimeout(context.Background(), time.Second*90) defer cancel() accounts := test.Accounts(ac.DeveloperAccounts(), gc.ChainConfig()) @@ -300,7 +299,6 @@ func TestRPCDynamicTxGasPriceWithState(t *testing.T) { // to know the exactly gasPrice expent in a dynamic tx, depends on consuming the // GasPriceMinimum contract func TestRPCDynamicTxGasPriceWithoutState(t *testing.T) { - t.Skip() // Flaky (deadline exceeded) ac := test.AccountConfig(3, 2) gc, ec, err := test.BuildConfig(ac) ec.TrieDirtyCache = 5 @@ -308,7 +306,7 @@ func TestRPCDynamicTxGasPriceWithoutState(t *testing.T) { network, shutdown, err := test.NewNetwork(ac, gc, ec) require.NoError(t, err) defer shutdown() - ctx, cancel := context.WithTimeout(context.Background(), time.Second*30) + ctx, cancel := context.WithTimeout(context.Background(), time.Second*90) defer cancel() accounts := test.Accounts(ac.DeveloperAccounts(), gc.ChainConfig())