diff --git a/test/php/application/forms/Config/Resource/LdapResourceFormTest.php b/test/php/application/forms/Config/Resource/LdapResourceFormTest.php index f382f8bb8..a20db214e 100644 --- a/test/php/application/forms/Config/Resource/LdapResourceFormTest.php +++ b/test/php/application/forms/Config/Resource/LdapResourceFormTest.php @@ -26,7 +26,7 @@ class LdapResourceFormTest extends BaseTestCase public function testValidLdapResourceIsValid() { $this->setUpResourceFactoryMock( - Mockery::mock()->shouldReceive('testCredentials')->once()->andReturn(true)->getMock() + Mockery::mock()->shouldReceive('connect')->once()->shouldReceive('bind')->once()->getMock() ); // Passing array(null) is required to make Mockery call the constructor... @@ -49,7 +49,7 @@ class LdapResourceFormTest extends BaseTestCase public function testInvalidLdapResourceIsNotValid() { $this->setUpResourceFactoryMock( - Mockery::mock()->shouldReceive('testCredentials')->once()->andThrow('\Exception')->getMock() + Mockery::mock()->shouldReceive('connect')->once()->shouldReceive('bind')->andThrow('\Exception')->getMock() ); // Passing array(null) is required to make Mockery call the constructor...