Skip to content

Commit

Permalink
test(world-modules): fix failing token fuzz test (#2341)
Browse files Browse the repository at this point in the history
  • Loading branch information
yonadaa authored Feb 28, 2024
1 parent a2e9932 commit 59acc3c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/world-modules/test/ERC721.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,8 @@ contract ERC721Test is Test, GasReporter, IERC721Events, IERC721Errors {
}

function testSafeTransferFromToERC721Recipient(uint256 id, address from, address operator) public {
_assumeDifferentNonZero(from, operator);

ERC721Recipient recipient = new ERC721Recipient();
_assumeDifferentNonZero(from, operator, address(recipient));

token.mint(from, id);

Expand Down

0 comments on commit 59acc3c

Please sign in to comment.