Skip to content

Commit a1354bb

Browse files
committed
Fix linting
1 parent 39c5bda commit a1354bb

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
@@ -460,11 +460,11 @@ contract("Colony Expenditure", (accounts) => {
460460
[token.address, otherToken.address],
461461
[
462462
[SLOT0, SLOT1],
463-
[SLOT1, SLOT2]
463+
[SLOT1, SLOT2],
464464
],
465465
[
466466
[WAD.muln(10), WAD.muln(20)],
467-
[WAD.muln(30), WAD.muln(40)]
467+
[WAD.muln(30), WAD.muln(40)],
468468
],
469469
{ from: ADMIN }
470470
);
@@ -559,10 +559,7 @@ contract("Colony Expenditure", (accounts) => {
559559
it("should not allow the owner to set payouts", async () => {
560560
const setExpenditurePayouts = colony.methods["setExpenditurePayouts(uint256,uint256[],address,uint256[])"];
561561

562-
await checkErrorRevert(
563-
setExpenditurePayouts(expenditureId, [SLOT0], token.address, [WAD], { from: ADMIN }),
564-
"colony-expenditure-not-draft"
565-
);
562+
await checkErrorRevert(setExpenditurePayouts(expenditureId, [SLOT0], token.address, [WAD], { from: ADMIN }), "colony-expenditure-not-draft");
566563
});
567564
});
568565

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+
expenditureId = await colony.getExpenditureCount();
198198

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

0 commit comments

Comments
 (0)