Skip to content

Commit

Permalink
Fix eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kronosapiens committed Sep 3, 2020
1 parent 83b278b commit 6ab7cb8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test/extensions/voting-rep.js
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,15 @@ contract("Voting Reputation", (accounts) => {
await otherColony.finalizeExpenditure(expenditureId);

// Set finalizedTimestamp to WAD
const action = await encodeTxData(otherColony, "setExpenditureState", [1, UINT256_MAX, expenditureId, 25, [true], [bn2bytes32(new BN(3))], WAD32]);
const action = await encodeTxData(otherColony, "setExpenditureState", [
1,
UINT256_MAX,
expenditureId,
25,
[true],
[bn2bytes32(new BN(3))],
WAD32,
]);

await voting.createRootMotion(otherColony.address, action, domain1Key, domain1Value, domain1Mask, domain1Siblings);
motionId = await voting.getMotionCount();
Expand Down

0 comments on commit 6ab7cb8

Please sign in to comment.