Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
karankurbur committed Jan 7, 2025
1 parent 31ba253 commit 08c6094
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions contracts/test/PBHEntryPointImplV1.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ contract PBHEntryPointImplV1Test is TestSetup {

vm.expectEmit(true, true, true, true);
emit PBH(address(this), signalHash, testPayload);
pbhEntryPoint.pbhMulticall(calls, testPayload);
pbhEntryPoint.pbhMulticall{gas: MAX_PBH_GAS_LIMIT}(calls, testPayload);
}

function test_pbhMulticall_RevertIf_GasLimitExceeded(uint8 pbhNonce) public {
Expand Down Expand Up @@ -196,7 +196,6 @@ contract PBHEntryPointImplV1Test is TestSetup {
assertTrue(
gasLimit > pbhEntryPoint.pbhGasLimit(), "Error value for gasLeft should be more than the pbhGasLimit"
);
assertTrue(gasLimit > 0, "Gas limit should be non-zero");
}
}

Expand Down

0 comments on commit 08c6094

Please sign in to comment.