This commit is contained in:
Sorunome 2020-06-15 10:48:35 +02:00
parent c4491fe97b
commit e2c358f319
No known key found for this signature in database
GPG Key ID: B19471D07FC9BE9C
1 changed files with 2 additions and 1 deletions

View File

@ -91,7 +91,8 @@ void main() {
expect(decryptedEvent.type, 'm.room.message');
expect(decryptedEvent.content['msgtype'], 'm.text');
expect(decryptedEvent.content['text'], 'Hello foxies!');
await client.encryption.decryptRoomEvent(roomId, encryptedEvent, store: true);
await client.encryption
.decryptRoomEvent(roomId, encryptedEvent, store: true);
});
test('dispose client', () async {