From c61edf2d28373ba0c85eab255e0f4b855951139e Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Mon, 15 Jan 2024 22:31:18 -0700 Subject: [PATCH] appease linter --- test/appservice/IntentTest.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/appservice/IntentTest.ts b/test/appservice/IntentTest.ts index 60914fec..7c2039b6 100644 --- a/test/appservice/IntentTest.ts +++ b/test/appservice/IntentTest.ts @@ -209,7 +209,7 @@ describe('Intent', () => { http.when("POST", "/_matrix/client/v3/register").respond(200, (path, content) => { expect(content).toMatchObject({ type: "m.login.application_service", username: "someone", device_id: deviceId }); - return {device_id: deviceId}; + return { device_id: deviceId }; }); const intent = new Intent(options, userId, appservice); @@ -257,7 +257,7 @@ describe('Intent', () => { http.when("POST", "/_matrix/client/v3/register").respond(200, (path, content) => { expect(content).toMatchObject({ type: "m.login.application_service", username: "someone" }); - return {device_id: deviceId}; + return { device_id: deviceId }; }); const intent = new Intent(options, userId, appservice);