Skip to content

Commit

Permalink
chore: dont name var like func name
Browse files Browse the repository at this point in the history
  • Loading branch information
Evalir committed Jun 28, 2023
1 parent 20407f4 commit 577cc5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Vm.sol
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ interface Vm is VmSafe {
// Sets an address' code
function etch(address target, bytes calldata newRuntimeBytecode) external;
// Marks a test as skipped. Must be called at the top of the test.
function skip(bool skip) external;
function skip(bool skipTest) external;
// Expects an error on next call
function expectRevert(bytes calldata revertData) external;
function expectRevert(bytes4 revertData) external;
Expand Down

0 comments on commit 577cc5d

Please sign in to comment.