Fix typo in GovernorVotesQuorumFraction.test.js (#5041)

pull/5049/head
alex 9 months ago committed by GitHub
parent 255e27e6d2
commit d947fb056d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      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.propose();
await this.helper.waitForSnapshot(); await this.helper.waitForSnapshot();
await this.helper.connect(this.voter1).vote({ support: VoteType.For }); await this.helper.connect(this.voter1).vote({ support: VoteType.For });
@ -82,7 +82,7 @@ describe('GovernorVotesQuorumFraction', function () {
await this.helper.execute(); await this.helper.execute();
}); });
it('quroum not reached', async function () { it('quorum not reached', async function () {
await this.helper.propose(); await this.helper.propose();
await this.helper.waitForSnapshot(); await this.helper.waitForSnapshot();
await this.helper.connect(this.voter2).vote({ support: VoteType.For }); await this.helper.connect(this.voter2).vote({ support: VoteType.For });

Loading…
Cancel
Save