Skip to content

Commit

Permalink
attempt fill in coverage gap
Browse files Browse the repository at this point in the history
  • Loading branch information
jhweintraub committed Nov 6, 2024
1 parent 487f4b3 commit 23b7473
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/gas-snapshots/shared.gas-snapshot
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ BurnMintERC20increaseApproval:test_IncreaseApproval_Success() (gas: 44076)
BurnMintERC20mint:test_BasicMint_Success() (gas: 52645)
BurnMintERC20mint:test_MaxSupplyExceeded_Reverts() (gas: 50385)
BurnMintERC20mint:test_SenderNotMinter_Reverts() (gas: 11641)
BurnMintERC20supportsInterface:test_SupportsInterface_Success() (gas: 11217)
BurnMintERC20supportsInterface:test_SupportsInterface_Success() (gas: 13974)
BurnMintERC20transfer:test_InvalidAddress_Reverts() (gas: 10661)
BurnMintERC20transfer:test_Transfer_Success() (gas: 42299)
BurnMintERC677_approve:testApproveSuccess() (gas: 55512)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
pragma solidity 0.8.24;

import {IBurnMintERC20} from "../../../../../shared/token/ERC20/IBurnMintERC20.sol";
import {IOwnable} from "../../../../../shared/interfaces/IOwnable.sol";
import {IGetCCIPAdmin} from "../../../../../ccip/interfaces/IGetCCIPAdmin.sol";

import {BurnMintERC20Setup} from "./BurnMintERC20Setup.t.sol";

Expand All @@ -13,5 +15,7 @@ contract BurnMintERC20supportsInterface is BurnMintERC20Setup {
assertTrue(s_burnMintERC20.supportsInterface(type(IERC20).interfaceId));
assertTrue(s_burnMintERC20.supportsInterface(type(IBurnMintERC20).interfaceId));
assertTrue(s_burnMintERC20.supportsInterface(type(IERC165).interfaceId));
assertTrue(s_burnMintERC20.supportsInterface(type(IOwnable).interfaceId));
assertTrue(s_burnMintERC20.supportsInterface(type(IGetCCIPAdmin).interfaceId));
}
}

0 comments on commit 23b7473

Please sign in to comment.