diff options
author | Joas Schilling <coding@schilljs.com> | 2024-10-18 07:39:41 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-10-18 06:21:01 +0000 |
commit | 498c3dc5666c74a6c0a2b41032aa5c9dfe680f5d (patch) | |
tree | 6839a411bcb5ad753746661e4dc861e77e1e63af /tests | |
parent | 570428e4e694114529b99e137290870b208751de (diff) | |
download | nextcloud-server-498c3dc5666c74a6c0a2b41032aa5c9dfe680f5d.tar.gz nextcloud-server-498c3dc5666c74a6c0a2b41032aa5c9dfe680f5d.zip |
fix(comments): Add test for email mentionbackport/48760/stable30
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Comments/CommentTest.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/lib/Comments/CommentTest.php b/tests/lib/Comments/CommentTest.php index feaa268a09e..2313c192297 100644 --- a/tests/lib/Comments/CommentTest.php +++ b/tests/lib/Comments/CommentTest.php @@ -196,6 +196,12 @@ class CommentTest extends TestCase { ['type' => 'federated_team', 'id' => 'Former Cirle'], ], ], + [ + 'Emails are supported since 30.0.2 right? @"email/aa23d315de327cfc330f0401ea061005b2b0cdd45ec8346f12664dd1f34cb886"', + [ + ['type' => 'email', 'id' => 'aa23d315de327cfc330f0401ea061005b2b0cdd45ec8346f12664dd1f34cb886'], + ], + ], ]; } |