Skip to content

Commit

Permalink
[CCIP-3376] lint
Browse files Browse the repository at this point in the history
  • Loading branch information
valerii-kabisov-cll committed Sep 20, 2024
1 parent 91e5301 commit 21c82b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import (
"math/big"
"testing"

mocks2 "github.com/smartcontractkit/chainlink/v2/core/services/ocr2/plugins/ccip/estimatorconfig/mocks"
"github.com/stretchr/testify/require"

mocks2 "github.com/smartcontractkit/chainlink/v2/core/services/ocr2/plugins/ccip/estimatorconfig/mocks"

"github.com/smartcontractkit/chainlink-common/pkg/types/ccip"
"github.com/smartcontractkit/chainlink/v2/core/services/ocr2/plugins/ccip/estimatorconfig"
"github.com/smartcontractkit/chainlink/v2/core/services/ocr2/plugins/ccip/internal/ccipdata/mocks"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@ func TestCommitStoreReaders(t *testing.T) {

var execGasPrice, daGasPrice *big.Int
feeEstimatorConfig.On("ModifyGasPriceComponents", mock.Anything, mock.Anything, mock.Anything).Run(func(args mock.Arguments) {
execGasPrice = args.Get(0).(*big.Int)
daGasPrice = args.Get(1).(*big.Int)
execGasPrice = args.Get(1).(*big.Int)
daGasPrice = args.Get(2).(*big.Int)
}).Return(execGasPrice, daGasPrice, nil).Maybe()

gpe, err := cr.GasPriceEstimator(ctx)
Expand Down

0 comments on commit 21c82b7

Please sign in to comment.