Skip to content

Commit a10ad27

Browse files
committed
Fix linting
1 parent f520243 commit a10ad27

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

test/contracts-network/colony-expenditure.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -407,11 +407,11 @@ contract("Colony Expenditure", (accounts) => {
407407
[token.address, otherToken.address],
408408
[
409409
[SLOT0, SLOT1],
410-
[SLOT1, SLOT2]
410+
[SLOT1, SLOT2],
411411
],
412412
[
413413
[WAD.muln(10), WAD.muln(20)],
414-
[WAD.muln(30), WAD.muln(40)]
414+
[WAD.muln(30), WAD.muln(40)],
415415
],
416416
{ from: ADMIN }
417417
);
@@ -506,10 +506,7 @@ contract("Colony Expenditure", (accounts) => {
506506
it("should not allow the owner to set payouts", async () => {
507507
const setExpenditurePayouts = colony.methods["setExpenditurePayouts(uint256,uint256[],address,uint256[])"];
508508

509-
await checkErrorRevert(
510-
setExpenditurePayouts(expenditureId, [SLOT0], token.address, [WAD], { from: ADMIN }),
511-
"colony-expenditure-not-draft"
512-
);
509+
await checkErrorRevert(setExpenditurePayouts(expenditureId, [SLOT0], token.address, [WAD], { from: ADMIN }), "colony-expenditure-not-draft");
513510
});
514511
});
515512

test/extensions/expenditure-utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ contract("ExpenditureUtils", (accounts) => {
194194

195195
beforeEach(async () => {
196196
await colony.makeExpenditure(1, UINT256_MAX, 1);
197-
constexpenditureId = await colony.getExpenditureCount();
197+
const expenditureId = await colony.getExpenditureCount();
198198

199199
await colony.lockExpenditure(expenditureId);
200200
});

0 commit comments

Comments
 (0)