From fe5bfbf76f3a7bbe1f300055f529e8aae4af8db5 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Wed, 16 Jun 2021 20:27:03 -0600 Subject: [PATCH] The linter needed appeasing --- spec/unit/models/MSC3089TreeSpace.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/unit/models/MSC3089TreeSpace.spec.ts b/spec/unit/models/MSC3089TreeSpace.spec.ts index b79670a77..a7f42e07b 100644 --- a/spec/unit/models/MSC3089TreeSpace.spec.ts +++ b/spec/unit/models/MSC3089TreeSpace.spec.ts @@ -154,9 +154,9 @@ describe("MSC3089TreeSpace", () => { // Bare minimum overrides. We proxy to our mock function manually so we can // count the calls, not to ensure accuracy. The invite function behaving correctly // is covered by another test. - {invite: (userId) => fn(tree.roomId, userId)} as MSC3089TreeSpace, - {invite: (userId) => fn(tree.roomId, userId)} as MSC3089TreeSpace, - {invite: (userId) => fn(tree.roomId, userId)} as MSC3089TreeSpace, + { invite: (userId) => fn(tree.roomId, userId) } as MSC3089TreeSpace, + { invite: (userId) => fn(tree.roomId, userId) } as MSC3089TreeSpace, + { invite: (userId) => fn(tree.roomId, userId) } as MSC3089TreeSpace, ]; await tree.invite(target, true);