summaryrefslogtreecommitdiffstats
path: root/tests/php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-01-14 10:54:48 +0100
committerJoas Schilling <coding@schilljs.com>2021-01-14 10:58:54 +0100
commitbd27c5adf15e055cecbd8efb8a650b3c13d6b4c0 (patch)
treee548eb72e23affad652cbec6a0c9816d233599c6 /tests/php
parent8f79234c42d8048a9a1d5e2d0c18426781d37cef (diff)
Update wording to open and limited conversation
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/php')
-rw-r--r--tests/php/Chat/Parser/SystemMessageTest.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/php/Chat/Parser/SystemMessageTest.php b/tests/php/Chat/Parser/SystemMessageTest.php
index 36d668283..b857a0000 100644
--- a/tests/php/Chat/Parser/SystemMessageTest.php
+++ b/tests/php/Chat/Parser/SystemMessageTest.php
@@ -332,27 +332,27 @@ class SystemMessageTest extends TestCase {
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_none', [], 'recipient',
- '{actor} made the conversation accessible to participants',
+ '{actor} limited the conversation to the current participants',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_none', [], 'actor',
- 'You made the conversation accessible to participants',
+ 'You limited the conversation to the current participants',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_users', [], 'recipient',
- '{actor} made the conversation accessible to registered users only',
+ '{actor} opened the conversation to registered users',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_users', [], 'actor',
- 'You made the conversation accessible to registered users only',
+ 'You opened the conversation to registered users',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_all', [], 'recipient',
- '{actor} made the conversation accessible to everyone',
+ '{actor} opened the conversation to registered and guest app users',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_all', [], 'actor',
- 'You made the conversation accessible to everyone',
+ 'You opened the conversation to registered and guest app users',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
];