From 577cc5db0450912aec0af5dc627277e1099d5f6b Mon Sep 17 00:00:00 2001 From: Enrique Ortiz Date: Wed, 28 Jun 2023 15:43:18 -0400 Subject: [PATCH] chore: dont name var like func name --- src/Vm.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Vm.sol b/src/Vm.sol index cb57f93d..a31db147 100644 --- a/src/Vm.sol +++ b/src/Vm.sol @@ -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;