From f8e9aa493a19c0da0ce2e00d29cb3918636dc06b Mon Sep 17 00:00:00 2001 From: Will Hunt <will@half-shot.uk> Date: Fri, 18 May 2018 10:51:08 +0100 Subject: [PATCH] Linting --- test/mocks/channel.ts | 2 +- test/test_matrixroomhandler.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/mocks/channel.ts b/test/mocks/channel.ts index ba68309..d979470 100644 --- a/test/mocks/channel.ts +++ b/test/mocks/channel.ts @@ -3,6 +3,6 @@ import {MockCollection} from "./collection"; // Mocking TextChannel export class MockChannel { - constructor (public id: string = "", public guild: any = null) { } public members = new MockCollection<string, MockMember>(); + constructor (public id: string = "", public guild: any = null) { } } diff --git a/test/test_matrixroomhandler.ts b/test/test_matrixroomhandler.ts index 343bfb2..36a0e70 100644 --- a/test/test_matrixroomhandler.ts +++ b/test/test_matrixroomhandler.ts @@ -488,9 +488,9 @@ describe("MatrixRoomHandler", () => { return { joinRoom: () => { return Promise.resolve(); - } + }, }; - } + }, }; const startTime = Date.now(); const MAXTIME = 1000; @@ -514,7 +514,7 @@ describe("MatrixRoomHandler", () => { }, getUserId: () => "@test:localhost", }; - } + }, }; const startTime = Date.now(); const MINTIME = 1000; -- GitLab