diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-08-20 18:24:09 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2020-08-21 13:14:32 +0200 |
commit | a0cbf16d9be06249c5f5d35d06975fa36bc4b304 (patch) | |
tree | 39fc8b06517235acb1cb0a9d6532b83d28824137 /tests | |
parent | 51922caa5f5c3c4a7bc446b1cfc5348451f0ad62 (diff) | |
download | nextcloud-server-a0cbf16d9be06249c5f5d35d06975fa36bc4b304.tar.gz nextcloud-server-a0cbf16d9be06249c5f5d35d06975fa36bc4b304.zip |
In case the group backend returns $limit or more results it is expected to contain more results
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Collaboration/Collaborators/UserPluginTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Collaboration/Collaborators/UserPluginTest.php b/tests/lib/Collaboration/Collaborators/UserPluginTest.php index 0db370d68b1..cf2298d42f2 100644 --- a/tests/lib/Collaboration/Collaborators/UserPluginTest.php +++ b/tests/lib/Collaboration/Collaborators/UserPluginTest.php @@ -328,7 +328,7 @@ class UserPluginTest extends TestCase { ['label' => 'Test One', 'value' => ['shareType' => IShare::TYPE_USER, 'shareWith' => 'test1'], 'status' => []], ['label' => 'Test Two', 'value' => ['shareType' => IShare::TYPE_USER, 'shareWith' => 'test2'], 'status' => []], ], - false, + true, false, [ ['test1', $this->getUserMock('test1', 'Test One')], |