diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-03-19 20:45:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-19 20:45:55 +0100 |
commit | ef789f8480a152e1a31b8598f9e2f3b8e08b9088 (patch) | |
tree | 439c0386a64e5378daef2375646864f0c456d6ee /tests/lib | |
parent | 6677963902297d95dd7f73854e2a6b1ea3873a4e (diff) | |
parent | 69694012ab0eca1ec1f3dc0d2b10a3b1728b0927 (diff) | |
download | nextcloud-server-ef789f8480a152e1a31b8598f9e2f3b8e08b9088.tar.gz nextcloud-server-ef789f8480a152e1a31b8598f9e2f3b8e08b9088.zip |
Merge pull request #3906 from nextcloud/shares-circles-2
Support Circles
Diffstat (limited to 'tests/lib')
-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 7b01a8f9e70..448373a8368 100644 --- a/tests/lib/Share20/ManagerTest.php +++ b/tests/lib/Share20/ManagerTest.php @@ -622,7 +622,7 @@ class ManagerTest extends \Test\TestCase { [$this->createShare(null, \OCP\Share::SHARE_TYPE_LINK, $file, $user2, $user0, $user0, 31, null, null), 'SharedWith should be empty', true], [$this->createShare(null, \OCP\Share::SHARE_TYPE_LINK, $file, $group0, $user0, $user0, 31, null, null), 'SharedWith should be empty', true], [$this->createShare(null, \OCP\Share::SHARE_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), 'unkown share type', true], + [$this->createShare(null, -1, $file, null, $user0, $user0, 31, null, null), 'unknown share type', true], [$this->createShare(null, \OCP\Share::SHARE_TYPE_USER, $file, $user2, null, $user0, 31, null, null), 'SharedBy should be set', true], [$this->createShare(null, \OCP\Share::SHARE_TYPE_GROUP, $file, $group0, null, $user0, 31, null, null), 'SharedBy should be set', true], |