Skip to content

Commit

Permalink
♻️ Make bound virtual (#279)
Browse files Browse the repository at this point in the history
Co-authored-by: t11s <[email protected]>
  • Loading branch information
vminkov and transmissions11 authored Jul 5, 2022
1 parent 7272d0b commit 03e4254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/utils/DSTestPlus.sol
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ contract DSTestPlus is DSTest {
uint256 x,
uint256 min,
uint256 max
) internal returns (uint256 result) {
) internal virtual returns (uint256 result) {
require(max >= min, "MAX_LESS_THAN_MIN");

uint256 size = max - min;
Expand Down

0 comments on commit 03e4254

Please sign in to comment.