File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/token/ERC20/extensions Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ describe('ERC1363', function () {
5959 shouldBehaveLikeERC20Transfer ( value ) ;
6060 } ) ;
6161
62- it ( 'reverts transfering to an EOA' , async function ( ) {
62+ it ( 'reverts transferring to an EOA' , async function ( ) {
6363 await expect ( this . token . connect ( this . holder ) . getFunction ( 'transferAndCall(address,uint256)' ) ( this . other , value ) )
6464 . to . be . revertedWithCustomError ( this . token , 'ERC1363InvalidReceiver' )
6565 . withArgs ( this . other . address ) ;
@@ -171,7 +171,7 @@ describe('ERC1363', function () {
171171 shouldBehaveLikeERC20Transfer ( value ) ;
172172 } ) ;
173173
174- it ( 'reverts transfering to an EOA' , async function ( ) {
174+ it ( 'reverts transferring to an EOA' , async function ( ) {
175175 await expect (
176176 this . token . connect ( this . other ) . getFunction ( 'transferFromAndCall(address,address,uint256)' ) (
177177 this . holder ,
You can’t perform that action at this time.
0 commit comments