Skip to content

Commit

Permalink
handle error
Browse files Browse the repository at this point in the history
  • Loading branch information
lumtis committed Nov 6, 2024
1 parent 973261f commit ad0d797
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/e2etests/test_deposit_and_call_out_of_gas.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ func TestDepositAndCallOutOfGas(r *runner.E2ERunner, args []string) {
require.True(r, ok, "Invalid amount specified for TestV2ETHDepositAndCall")

// Deploy the GasConsumer contract
//nolint:dogsled
gasConsumerAddress, _, _, _ := testgasconsumer.DeployTestGasConsumer(r.ZEVMAuth, r.ZEVMClient)
gasConsumerAddress, _, _, err := testgasconsumer.DeployTestGasConsumer(r.ZEVMAuth, r.ZEVMClient)
require.NoError(r, err)

// perform the deposit and call to the GasConsumer contract
tx := r.V2ETHDepositAndCall(
Expand Down

0 comments on commit ad0d797

Please sign in to comment.