From d947fb056d6a7eb099013076ac5ea5a69e9fec06 Mon Sep 17 00:00:00 2001 From: alex <152680487+bodhi-crypo@users.noreply.github.com> Date: Fri, 17 May 2024 21:24:06 +0800 Subject: [PATCH] Fix typo in GovernorVotesQuorumFraction.test.js (#5041) --- .../governance/extensions/GovernorVotesQuorumFraction.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/governance/extensions/GovernorVotesQuorumFraction.test.js b/test/governance/extensions/GovernorVotesQuorumFraction.test.js index db728f0a6..368e396f9 100644 --- a/test/governance/extensions/GovernorVotesQuorumFraction.test.js +++ b/test/governance/extensions/GovernorVotesQuorumFraction.test.js @@ -74,7 +74,7 @@ describe('GovernorVotesQuorumFraction', function () { ); }); - it('quroum reached', async function () { + it('quorum reached', async function () { await this.helper.propose(); await this.helper.waitForSnapshot(); await this.helper.connect(this.voter1).vote({ support: VoteType.For }); @@ -82,7 +82,7 @@ describe('GovernorVotesQuorumFraction', function () { await this.helper.execute(); }); - it('quroum not reached', async function () { + it('quorum not reached', async function () { await this.helper.propose(); await this.helper.waitForSnapshot(); await this.helper.connect(this.voter2).vote({ support: VoteType.For });