diff --git a/test/governance/extensions/GovernorWithParams.test.js b/test/governance/extensions/GovernorWithParams.test.js index 896c2e094..35da3a0f3 100644 --- a/test/governance/extensions/GovernorWithParams.test.js +++ b/test/governance/extensions/GovernorWithParams.test.js @@ -147,7 +147,7 @@ contract('GovernorWithParams', function (accounts) { ethSigUtil.signTypedMessage(privateKey, { data: await this.data(contract, message) }); }); - it('suports EOA signatures', async function () { + it('supports EOA signatures', async function () { await this.token.delegate(this.voterBySig.address, { from: voter2 }); const weight = web3.utils.toBN(web3.utils.toWei('7')).sub(rawParams.uintParam); diff --git a/test/helpers/governance.js b/test/helpers/governance.js index 3ae0695ac..9b3349cf8 100644 --- a/test/helpers/governance.js +++ b/test/helpers/governance.js @@ -81,7 +81,7 @@ class GovernorHelper { ...concatOpts(proposal.shortProposal, opts), ); default: - throw new Error(`unsuported visibility "${visibility}"`); + throw new Error(`unsupported visibility "${visibility}"`); } }