diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2016-02-03 22:45:33 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2016-02-03 22:45:33 +0100 |
commit | e370b601db702ae9d6d57f961b651c401be4310f (patch) | |
tree | 975051af5486c22995ab7235b686c037561c08ef /apps/user_ldap/tests | |
parent | cd19b648c644df4c5e28b0a50ffe3f9cbbc8a9fb (diff) | |
download | nextcloud-server-e370b601db702ae9d6d57f961b651c401be4310f.tar.gz nextcloud-server-e370b601db702ae9d6d57f961b651c401be4310f.zip |
fix unit tests
Diffstat (limited to 'apps/user_ldap/tests')
-rw-r--r-- | apps/user_ldap/tests/group_ldap.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/apps/user_ldap/tests/group_ldap.php b/apps/user_ldap/tests/group_ldap.php index 5f9ded878ca..667a1c3acb2 100644 --- a/apps/user_ldap/tests/group_ldap.php +++ b/apps/user_ldap/tests/group_ldap.php @@ -67,10 +67,13 @@ class Test_Group_Ldap extends \Test\TestCase { private function enableGroups($access) { $access->connection->expects($this->any()) - ->method('__get') - ->will($this->returnCallback(function() { - return 1; - })); + ->method('__get') + ->will($this->returnCallback(function($name) { + if($name === 'ldapDynamicGroupMemberURL') { + return ''; + } + return 1; + })); } public function testCountEmptySearchString() { @@ -430,6 +433,8 @@ class Test_Group_Ldap extends \Test\TestCase { ->will($this->returnCallback(function($name) { if($name === 'useMemberOfToDetectMembership') { return 0; + } else if($name === 'ldapDynamicGroupMemberURL') { + return ''; } return 1; })); |