Skip to content

Commit 2cfce46

Browse files
committed
fix lint
1 parent dab3bb4 commit 2cfce46

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/helpers/governance.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ class GovernorHelper {
6969
case 'external':
7070
return this.governor.methods['cancel(uint256)'](...concatOpts([proposal.id], opts));
7171
case 'internal':
72-
return this.governor.methods['$_cancel(address[],uint256[],bytes[],bytes32)'](...concatOpts(proposal.shortProposal, opts));
72+
return this.governor.methods['$_cancel(address[],uint256[],bytes[],bytes32)'](
73+
...concatOpts(proposal.shortProposal, opts),
74+
);
7375
default:
7476
throw new Error(`unsuported visibility "${visibility}"`);
7577
}

0 commit comments

Comments
 (0)