Skip to content

Commit

Permalink
Update test/example/NFTPortal.t.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
alainncls authored Sep 22, 2023
1 parent 3aa36d6 commit f2d9a3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/example/NFTPortal.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ contract NFTPortalTest is Test {
bool isIERC165Supported = nftPortal.supportsInterface(type(IERC165).interfaceId);
assertTrue(isIERC165Supported);
bool isIERC721Supported = nftPortal.supportsInterface(type(IERC721).interfaceId);
assertEq(isIERC721Supported, true);
assertTrue(isIERC721Supported)
bool isEASAbstractPortalSupported = nftPortal.supportsInterface(type(AbstractPortal).interfaceId);
assertEq(isEASAbstractPortalSupported, true);
}
Expand Down

0 comments on commit f2d9a3b

Please sign in to comment.