Skip to content

Commit

Permalink
fix copy paste
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph committed Feb 27, 2025
1 parent 88a1280 commit 5a7e044
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/c/dynamic_fees.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ var _ = e2e.DescribeCChain("[Dynamic Fees]", func() {

// If the gas price has decreased, stop the loop.
if initialGasPrice.Cmp(latest.BaseFee) >= 0 {
tc.Log().Info("gas price has increased",
tc.Log().Info("gas price has decreased",
zap.Stringer("initialPrice", initialGasPrice),
zap.Stringer("newPrice", latest.BaseFee),
)
Expand Down Expand Up @@ -214,7 +214,7 @@ var _ = e2e.DescribeCChain("[Dynamic Fees]", func() {

// The gas price will be checked at the start of the next iteration
return false
}, e2e.DefaultTimeout, e2e.DefaultPollingInterval, "failed to see gas price increase before timeout")
}, e2e.DefaultTimeout, e2e.DefaultPollingInterval, "failed to see gas price decrease before timeout")
})

_ = e2e.CheckBootstrapIsPossible(tc, privateNetwork)
Expand Down

0 comments on commit 5a7e044

Please sign in to comment.