Skip to content

Commit

Permalink
Fix typos in timelock test (OpenZeppelin#3461)
Browse files Browse the repository at this point in the history
fix typos
  • Loading branch information
andrew-fleming authored Jun 11, 2022
1 parent 429b224 commit 4135bf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/governance/TimelockController.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ contract('TimelockController', function (accounts) {
);
});

it('prevent non-proposer from commiting', async function () {
it('prevent non-proposer from committing', async function () {
await expectRevert(
this.mock.schedule(
this.operation.target,
Expand Down Expand Up @@ -438,7 +438,7 @@ contract('TimelockController', function (accounts) {
);
});

it('prevent non-proposer from commiting', async function () {
it('prevent non-proposer from committing', async function () {
await expectRevert(
this.mock.scheduleBatch(
this.operation.targets,
Expand Down

0 comments on commit 4135bf9

Please sign in to comment.