Skip to content

Commit

Permalink
bounded test case
Browse files Browse the repository at this point in the history
  • Loading branch information
jordaniza committed Sep 12, 2024
1 parent ebb1ed2 commit 596bc69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/escrow/escrow/EscrowWithdraw.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ contract TestWithdraw is EscrowBase, IEscrowCurveUserStorage, IGaugeVote {
}

function testFuzz_enterWithdrawal(uint128 _dep, address _who) public {
vm.assume(_who != address(0));
vm.assume(_who != address(0) && _who != address(queue) && _who != address(escrow));
vm.assume(_dep > 0);

// make a deposit
Expand Down

0 comments on commit 596bc69

Please sign in to comment.