Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh committed Jan 20, 2025
1 parent 025fc58 commit 4800782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/machine.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ describe(OlmMachine.name, () => {

const decryptionSettings = new DecryptionSettings(TrustRequirement.Untrusted);
const decrypted = await m.decryptRoomEvent(stringifiedEvent, room, decryptionSettings)!;
expect(decrypted).toBeInstanceOf(DecryptedRoomEvent)
expect(decrypted).toBeInstanceOf(DecryptedRoomEvent);

const event = JSON.parse(decrypted.event);
expect(event.content.msgtype).toStrictEqual("m.text");
Expand Down

0 comments on commit 4800782

Please sign in to comment.