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 <213943+nickvergessen@users.noreply.github.com>2019-09-04 16:01:30 +0300
committerGitHub <noreply@github.com>2019-09-04 16:01:30 +0300
commite0b99298b4f10c54c83723164bdebee399a0c42d (patch)
tree1fef4fdf7ab0d8b44972ebe737b7b5e676a309b3 /tests
parent1f965d5590640933e74084102413ba4668942af7 (diff)
parent4f64ed7d4aaafba60b9501ffbb0becaff646b2eb (diff)
Merge pull request #2148 from nextcloud/bugfix/2141/use-new-richobject-type-guest
Use the new rich object type guest
Diffstat (limited to 'tests')
-rw-r--r--tests/php/Notification/NotifierTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/php/Notification/NotifierTest.php b/tests/php/Notification/NotifierTest.php
index ef54f6acb..586ef5348 100644
--- a/tests/php/Notification/NotifierTest.php
+++ b/tests/php/Notification/NotifierTest.php
@@ -443,7 +443,7 @@ class NotifierTest extends \Test\TestCase {
['{guest} (guest) mentioned you in conversation {call}',
[
'call' => ['type' => 'call', 'id' => 1234, 'name' => 'Room name', 'call-type' => 'public'],
- 'guest' => ['type' => 'highlight', 'id' => 'random-hash', 'name' => 'MyNameIs'],
+ 'guest' => ['type' => 'guest', 'id' => 'random-hash', 'name' => 'MyNameIs'],
]
], false, 'MyNameIs'
],
@@ -557,7 +557,7 @@ class NotifierTest extends \Test\TestCase {
['{guest} (guest) sent a message in conversation {call}',
[
'call' => ['type' => 'call', 'id' => 1234, 'name' => 'Room name', 'call-type' => 'public'],
- 'guest' => ['type' => 'highlight', 'id' => 'random-hash', 'name' => 'MyNameIs'],
+ 'guest' => ['type' => 'guest', 'id' => 'random-hash', 'name' => 'MyNameIs'],
]
], false, 'MyNameIs'
],