Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
b-gopalswami committed Jul 8, 2024
1 parent 91cc5d6 commit fbeec1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-tests/ccip-tests/testsetups/ccip.go
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ func (o *CCIPTestSetUpOutputs) CheckGasUpdateTransaction() error {
readGasUpdateTx := func(lane *actions.CCIPLane) error {
for _, g := range lane.Source.Common.GasUpdateEvents {
if g.Value == nil {
return fmt.Errorf("gas update value should not be nil for chain selected %s in tx %s", g.ChainSelector, g.Tx)
return fmt.Errorf("gas update value should not be nil for chain selected %v in tx %s", g.ChainSelector, g.Tx)
}
if v, ok := transactions[g.Tx]; ok {
v[g.ChainSelector] = g.Value.String()
Expand Down

0 comments on commit fbeec1d

Please sign in to comment.