Skip to content

Commit

Permalink
Extended timeline for e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hbandura committed Feb 18, 2022
1 parent 9b1381f commit 2cfe6f7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions e2e_test/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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())
Expand Down Expand Up @@ -300,15 +299,14 @@ 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
require.NoError(t, err)
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())
Expand Down

0 comments on commit 2cfe6f7

Please sign in to comment.