diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-11-07 16:27:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-07 16:27:36 +0100 |
commit | ab3543380c96b0beb5de4db977bbc12894379288 (patch) | |
tree | 422cbaa88830034d9406ecf2eac44db00548c59d /tests | |
parent | 11f8dcb59caf336536fb908510e2955a5ae0eae8 (diff) | |
parent | 375589b274ad6da55f1a516c953b807105dfd2a4 (diff) | |
download | nextcloud-server-ab3543380c96b0beb5de4db977bbc12894379288.tar.gz nextcloud-server-ab3543380c96b0beb5de4db977bbc12894379288.zip |
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.php | 7 |
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'] + ], ]; } |