diff options
Diffstat (limited to 'tests/lib/User')
-rw-r--r-- | tests/lib/User/ManagerTest.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/lib/User/ManagerTest.php b/tests/lib/User/ManagerTest.php index 2ecae3a8500..d2e48ffa538 100644 --- a/tests/lib/User/ManagerTest.php +++ b/tests/lib/User/ManagerTest.php @@ -236,7 +236,7 @@ class ManagerTest extends TestCase { $backend->expects($this->once()) ->method('getUsers') ->with($this->equalTo('fo')) - ->will($this->returnValue(array('foo', 'afoo'))); + ->will($this->returnValue(array('foo', 'afoo', 'Afoo1', 'Bfoo'))); $backend->expects($this->never()) ->method('loginName2UserName'); @@ -244,8 +244,10 @@ class ManagerTest extends TestCase { $manager->registerBackend($backend); $result = $manager->search('fo'); - $this->assertEquals(2, count($result)); + $this->assertEquals(4, count($result)); $this->assertEquals('afoo', array_shift($result)->getUID()); + $this->assertEquals('Afoo1', array_shift($result)->getUID()); + $this->assertEquals('Bfoo', array_shift($result)->getUID()); $this->assertEquals('foo', array_shift($result)->getUID()); } |