Skip to content

Commit

Permalink
appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
turt2live committed Jan 16, 2024
1 parent 0afd0ea commit c61edf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/appservice/IntentTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit c61edf2

Please sign in to comment.