Skip to content

Commit

Permalink
Fix typo in GovernorVotesQuorumFraction.test.js (#5041)
Browse files Browse the repository at this point in the history
  • Loading branch information
bodhi-crypo committed May 17, 2024
1 parent 255e27e commit d947fb0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ 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 });
await this.helper.waitForDeadline();
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 });
Expand Down

0 comments on commit d947fb0

Please sign in to comment.