Skip to content

Commit fd0ef64

Browse files
committed
add logging
1 parent bcb0b84 commit fd0ef64

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/governance/extensions/GovernorTimelockControl.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,14 +153,16 @@ contract('GovernorTimelockControl', function (accounts) {
153153
});
154154

155155
describe('on execute', function () {
156-
it('if not queued', async function () {
156+
it.only('if not queued', async function () {
157157
await this.helper.propose();
158158
await this.helper.waitForSnapshot();
159159
await this.helper.vote({ support: Enums.VoteType.For }, { from: voter1 });
160160
await this.helper.waitForDeadline(+1);
161161

162162
expect(await this.mock.state(this.proposal.id)).to.be.bignumber.equal(Enums.ProposalState.Succeeded);
163163

164+
console.log(this.mock.address, this.proposal.shortProposal[3]);
165+
164166
await expectRevertCustomError(this.helper.execute(), 'TimelockUnexpectedOperationState', [
165167
this.proposal.timelockid,
166168
proposalStatesToBitMap(Enums.OperationState.Ready),

0 commit comments

Comments
 (0)