Skip to content

Commit 9b43312

Browse files
author
Rahul Maganti
committed
evm: use bound in place of vm.assume
1 parent 5e627a1 commit 9b43312

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

evm/test/RateLimit.t.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -953,8 +953,8 @@ contract TestRateLimit is Test, IRateLimiterEvents {
953953
}
954954

955955
function testFuzz_inboundRateLimitShouldQueue(uint256 inboundLimitAmt, uint256 amount) public {
956-
vm.assume(amount > 0 && amount <= type(uint64).max);
957-
vm.assume(inboundLimitAmt < amount);
956+
amount = bound(amount, 1, type(uint64).max);
957+
inboundLimitAmt = bound(amount, 0, amount - 1);
958958

959959
address user_B = address(0x456);
960960

0 commit comments

Comments
 (0)