Skip to content

Commit

Permalink
added fuzz assert in Claim tests
Browse files Browse the repository at this point in the history
  • Loading branch information
0xPilou committed Feb 13, 2024
1 parent d6925b4 commit c466bc3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion forge-cache/solidity-files-cache.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions test/royalty/ABClaim.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,7 @@ contract ABClaimTest is Test {

function test_claim_singleLegacyDrop(address _sender, address u1, address u2) public {
vm.assume(_sender != address(0));
vm.assume(_sender != address(proxyAdmin));
vm.assume(u1 != address(0));
vm.assume(u2 != address(0));
vm.assume(u1 != u2);
Expand Down Expand Up @@ -709,6 +710,7 @@ contract ABClaimTest is Test {

function test_claimOnBehalf_singleLegacyDrop(address _sender, address u1, address u2) public {
vm.assume(_sender != address(0));
vm.assume(_sender != address(proxyAdmin));
vm.assume(u1 != address(0));
vm.assume(u2 != address(0));
vm.assume(u1 != u2);
Expand Down

0 comments on commit c466bc3

Please sign in to comment.