Skip to content

Commit

Permalink
Fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dwasse committed Apr 1, 2024
1 parent 9ed2dd0 commit 3477378
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions ethergo/chain/gas/cmp_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
package gas_test

import (
"math/big"
"testing"
"time"

"github.com/brianvoe/gofakeit/v6"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/core/types"
Expand All @@ -9,9 +13,6 @@ import (
"github.com/synapsecns/sanguine/core/testsuite"
"github.com/synapsecns/sanguine/ethergo/chain/gas"
"gotest.tools/assert"
"math/big"
"testing"
"time"
)

// cmpTestCase is a gas comparison test case.
Expand Down Expand Up @@ -406,7 +407,7 @@ func getBumpTestCases() []*bumpTestCase {
baseFee: big.NewInt(1),
percentIncrease: 10,
expectedGasTipCap: big.NewInt(11),
expectedGasFeeCap: testCfg.MaxPrice,
expectedGasFeeCap: big.NewInt(110),
description: "bump tip by 10%",
},
{
Expand Down

0 comments on commit 3477378

Please sign in to comment.