Skip to content

Commit

Permalink
fixed small error in stopOnRevertHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabriziogianni7 committed Apr 17, 2024
1 parent 3a0d9ba commit 160a8b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fuzz/failOnRevert/StopOnRevertHandler.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ contract StopOnRevertHandler is Test {
uint256 maxCollateral = dscEngine.getCollateralBalanceOfUser(msg.sender, address(collateral));

amountCollateral = bound(amountCollateral, 0, maxCollateral);
vm.prank(msg.sender);
//vm.prank(msg.sender);
if (amountCollateral == 0) {
return;
}
Expand Down

0 comments on commit 160a8b2

Please sign in to comment.