Skip to content

Commit

Permalink
Fix codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestognw committed Jan 23, 2024
1 parent 54f06e7 commit 12e2952
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/token/ERC20/extensions/ERC1363.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ describe('ERC1363', function () {
shouldBehaveLikeERC20Transfer(value);
});

it('reverts transfering to an EOA', async function () {
it('reverts transferring to an EOA', async function () {
await expect(this.token.connect(this.holder).getFunction('transferAndCall(address,uint256)')(this.other, value))
.to.be.revertedWithCustomError(this.token, 'ERC1363InvalidReceiver')
.withArgs(this.other.address);
Expand Down Expand Up @@ -171,7 +171,7 @@ describe('ERC1363', function () {
shouldBehaveLikeERC20Transfer(value);
});

it('reverts transfering to an EOA', async function () {
it('reverts transferring to an EOA', async function () {
await expect(
this.token.connect(this.other).getFunction('transferFromAndCall(address,address,uint256)')(
this.holder,
Expand Down

0 comments on commit 12e2952

Please sign in to comment.