fix unit tests

This commit is contained in:
Arthur Schiwon 2016-02-03 22:45:33 +01:00
parent cd19b648c6
commit e370b601db
1 changed files with 9 additions and 4 deletions

View File

@ -67,10 +67,13 @@ class Test_Group_Ldap extends \Test\TestCase {
private function enableGroups($access) { private function enableGroups($access) {
$access->connection->expects($this->any()) $access->connection->expects($this->any())
->method('__get') ->method('__get')
->will($this->returnCallback(function() { ->will($this->returnCallback(function($name) {
return 1; if($name === 'ldapDynamicGroupMemberURL') {
})); return '';
}
return 1;
}));
} }
public function testCountEmptySearchString() { public function testCountEmptySearchString() {
@ -430,6 +433,8 @@ class Test_Group_Ldap extends \Test\TestCase {
->will($this->returnCallback(function($name) { ->will($this->returnCallback(function($name) {
if($name === 'useMemberOfToDetectMembership') { if($name === 'useMemberOfToDetectMembership') {
return 0; return 0;
} else if($name === 'ldapDynamicGroupMemberURL') {
return '';
} }
return 1; return 1;
})); }));