Fix typos in timelock test (#3461)

fix typos
pull/3465/head
Andrew Fleming 3 years ago committed by GitHub
parent 429b2242d8
commit 4135bf9707
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      test/governance/TimelockController.test.js

@ -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,
@ -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,

Loading…
Cancel
Save