test adoption for stable12
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
7f0e4a5357
commit
32597f8966
|
@ -1035,9 +1035,11 @@ class User_LDAPTest extends TestCase {
|
||||||
->will($this->returnValue('roland'));
|
->will($this->returnValue('roland'));
|
||||||
|
|
||||||
$access->expects($this->any())
|
$access->expects($this->any())
|
||||||
->method('stringResemblesDN')
|
->method('stringResemblesDN')
|
||||||
->with($this->equalTo('dnOfRoland,dc=test'))
|
->will($this->returnCallback(function($string) {
|
||||||
->will($this->returnValue(true));
|
// very simplified
|
||||||
|
return strpos($string, ',') !== false;
|
||||||
|
}));
|
||||||
|
|
||||||
$access->expects($this->any())
|
$access->expects($this->any())
|
||||||
->method('setPassword')
|
->method('setPassword')
|
||||||
|
|
Loading…
Reference in New Issue