diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-09-04 08:47:17 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-09-04 09:03:45 +0200 |
commit | 78e09b5a0a8859d29ba61ac43298902c9bede181 (patch) | |
tree | 4cf2c16d58a88d180fdb43302700ab2b4642c4c4 /tests | |
parent | f4aa2644eeed29971d1eecb3d22bb0127e428141 (diff) | |
download | nextcloud-server-78e09b5a0a8859d29ba61ac43298902c9bede181.tar.gz nextcloud-server-78e09b5a0a8859d29ba61ac43298902c9bede181.zip |
fix: share manager tests translation string
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Share20/ManagerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Share20/ManagerTest.php b/tests/lib/Share20/ManagerTest.php index 370047a7e7c..f7b8f1458b3 100644 --- a/tests/lib/Share20/ManagerTest.php +++ b/tests/lib/Share20/ManagerTest.php @@ -652,7 +652,7 @@ class ManagerTest extends \Test\TestCase { [$this->createShare(null, IShare::TYPE_LINK, $file, $user2, $user0, $user0, 31, null, null), 'SharedWith should be empty', true], [$this->createShare(null, IShare::TYPE_LINK, $file, $group0, $user0, $user0, 31, null, null), 'SharedWith should be empty', true], [$this->createShare(null, IShare::TYPE_LINK, $file, 'foo@bar.com', $user0, $user0, 31, null, null), 'SharedWith should be empty', true], - [$this->createShare(null, -1, $file, null, $user0, $user0, 31, null, null), 'unknown share type', true], + [$this->createShare(null, -1, $file, null, $user0, $user0, 31, null, null), 'Unknown share type', true], [$this->createShare(null, IShare::TYPE_USER, $file, $user2, null, $user0, 31, null, null), 'SharedBy should be set', true], [$this->createShare(null, IShare::TYPE_GROUP, $file, $group0, null, $user0, 31, null, null), 'SharedBy should be set', true], |