Skip to content

Commit

Permalink
replace modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
Erikd-dev committed Jul 31, 2024
1 parent 27379f5 commit 8749ee2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/abstract/InterpreterMockTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ abstract contract InterpreterMockTest is Test {
vm.resumeGasMetering();
}

function interpreterEval2MockCall(uint256[] memory stack, uint256[] memory writes) public {
function interpreterEval2MockCall(uint256[] memory stack, uint256[] memory writes) internal {
vm.mockCall(
address(iInterpreter), abi.encodeWithSelector(IInterpreterV2.eval2.selector), abi.encode(stack, writes)
);
}

function expressionDeployerDeployExpression2MockCall(address expression, bytes memory io) public {
function expressionDeployerDeployExpression2MockCall(address expression, bytes memory io) internal {
vm.mockCall(
address(iDeployer),
abi.encodeWithSelector(IExpressionDeployerV3.deployExpression2.selector),
Expand Down

0 comments on commit 8749ee2

Please sign in to comment.