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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-11-07 18:27:36 +0300
committerGitHub <noreply@github.com>2018-11-07 18:27:36 +0300
commitab3543380c96b0beb5de4db977bbc12894379288 (patch)
tree422cbaa88830034d9406ecf2eac44db00548c59d /tests
parent11f8dcb59caf336536fb908510e2955a5ae0eae8 (diff)
parent375589b274ad6da55f1a516c953b807105dfd2a4 (diff)
Merge pull request #11836 from nextcloud/bugfix/2443/comment-mentions-with-spaces
Comment mentions with spaces
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/Comments/CommentTest.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/lib/Comments/CommentTest.php b/tests/lib/Comments/CommentTest.php
index 15dd9120e44..5fb19396d84 100644
--- a/tests/lib/Comments/CommentTest.php
+++ b/tests/lib/Comments/CommentTest.php
@@ -150,8 +150,11 @@ class CommentTest extends TestCase {
['foobar', 'barfoo', 'foo@bar.com', 'bar@foo.org@foobar.io', '23452-4333-54353-2342', 'yolo']
],
[
- '@@chef is also a valid mention, no matter how strange it looks', ['@chef']
- ]
+ '@@chef is also a valid mention, no matter how strange it looks', ['@chef']
+ ],
+ [
+ 'Also @"user with spaces" are now supported', ['user with spaces']
+ ],
];
}