summaryrefslogtreecommitdiffstats
path: root/tests/php
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2020-12-10 15:48:58 +0100
committerVincent Petry <vincent@nextcloud.com>2020-12-11 18:15:53 +0100
commit777c7b66a4c0c282a52175993af5f4b97856a4b8 (patch)
tree756b81d1746b1b00323495957c239d81b7c75082 /tests/php
parent2b54740e5bfb1337930e258d1b78a75bb231d85a (diff)
Changed wording to say visible instead of listable
Signed-off-by: Vincent Petry <vincent@nextcloud.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 d98e2e4a8..772f60b40 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 not listable',
+ '{actor} made the conversation invisible',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_none', [], 'actor',
- 'You made the conversation not listable',
+ 'You made the conversation invisible',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_users', [], 'recipient',
- '{actor} made the conversation listable for users only',
+ '{actor} made the conversation visible for registered users only',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_users', [], 'actor',
- 'You made the conversation listable for users only',
+ 'You made the conversation visible for registered users only',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_all', [], 'recipient',
- '{actor} made the conversation listable for everyone',
+ '{actor} made the conversation visible for everyone',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
['listable_all', [], 'actor',
- 'You made the conversation listable for everyone',
+ 'You made the conversation visible for everyone',
['actor' => ['id' => 'actor', 'type' => 'user']],
],
];