diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-11-22 08:22:10 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-11-27 13:34:41 +0100 |
commit | 3aa5f105fa2c763a57130c81a2e79a968a098777 (patch) | |
tree | 6eb13127ee3420fb331ea638a78956593cbf31a8 /tests/lib/Collaboration/Collaborators | |
parent | bfaca7fc78680f8efa4405d497a13a32e760b7ba (diff) | |
download | nextcloud-server-3aa5f105fa2c763a57130c81a2e79a968a098777.tar.gz nextcloud-server-3aa5f105fa2c763a57130c81a2e79a968a098777.zip |
Fix more tests
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests/lib/Collaboration/Collaborators')
-rw-r--r-- | tests/lib/Collaboration/Collaborators/UserPluginTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Collaboration/Collaborators/UserPluginTest.php b/tests/lib/Collaboration/Collaborators/UserPluginTest.php index b9f10a54fa0..57b9cbde856 100644 --- a/tests/lib/Collaboration/Collaborators/UserPluginTest.php +++ b/tests/lib/Collaboration/Collaborators/UserPluginTest.php @@ -414,8 +414,8 @@ class UserPluginTest extends TestCase { $this->groupManager->expects($this->exactly(2)) ->method('getUserGroupIds') ->withConsecutive( - $this->user, - $singleUser + [$this->user], + [$singleUser] ) ->willReturn($groupResponse); } else { |