From aa94087d0e0aab505c0ebd7c71535ed4aca19e7f Mon Sep 17 00:00:00 2001 From: Vitalyr <158586577+Vitaliyr888@users.noreply.github.com> Date: Thu, 13 Feb 2025 17:31:21 +0100 Subject: [PATCH] spelling error (#5505) --- test/token/ERC20/extensions/ERC20Wrapper.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/token/ERC20/extensions/ERC20Wrapper.test.js b/test/token/ERC20/extensions/ERC20Wrapper.test.js index 9e72e1a92..2f630e638 100644 --- a/test/token/ERC20/extensions/ERC20Wrapper.test.js +++ b/test/token/ERC20/extensions/ERC20Wrapper.test.js @@ -77,7 +77,7 @@ describe('ERC20Wrapper', function () { .withArgs(this.token, 0, initialSupply); }); - it('reverts when inssuficient balance', async function () { + it('reverts when insufficient balance', async function () { await this.underlying.connect(this.holder).approve(this.token, ethers.MaxUint256); await expect(this.token.connect(this.holder).depositFor(this.holder, ethers.MaxUint256)) @@ -117,7 +117,7 @@ describe('ERC20Wrapper', function () { await this.token.connect(this.holder).depositFor(this.holder, initialSupply); }); - it('reverts when inssuficient balance', async function () { + it('reverts when insufficient balance', async function () { await expect(this.token.connect(this.holder).withdrawTo(this.holder, ethers.MaxInt256)) .to.be.revertedWithCustomError(this.token, 'ERC20InsufficientBalance') .withArgs(this.holder, initialSupply, ethers.MaxInt256);