Skip to content

Commit 12e2952

Browse files
committed
Fix codespell
1 parent 54f06e7 commit 12e2952

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/token/ERC20/extensions/ERC1363.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)