Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-09-02 16:57:25 +0300
committerJoas Schilling <coding@schilljs.com>2021-09-14 16:34:12 +0300
commita95bf0820d4d34f9eaa749ec3ca020acc635355f (patch)
tree3d2d05928c63beadce48ab052add5936125ddf97 /tests
parent5ddc878c183d66671a6f15e464828ccff79fba8a (diff)
Unify handling of deleted users
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/php/Chat/Parser/SystemMessageTest.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/php/Chat/Parser/SystemMessageTest.php b/tests/php/Chat/Parser/SystemMessageTest.php
index c7ea3b78f..652cedab5 100644
--- a/tests/php/Chat/Parser/SystemMessageTest.php
+++ b/tests/php/Chat/Parser/SystemMessageTest.php
@@ -926,6 +926,7 @@ class SystemMessageTest extends TestCase {
->method('get')
->with($uid)
->willReturn(null);
+ $this->expectException(ParticipantNotFoundException::class);
}
$this->assertSame($name, self::invokePrivate($parser, 'getDisplayName', [$uid]));