diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-12 16:21:28 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-25 16:04:58 +0200 |
commit | 3690ce1b36cf771f1c36f0dc2576c75c4f513ce3 (patch) | |
tree | 603af0021cb9ca16b24a588c7966d78da997fef6 /apps/user_ldap/tests | |
parent | 5b3087d3759d2f0ae09495ab8aa47eb2ad4f7c46 (diff) | |
download | nextcloud-server-3690ce1b36cf771f1c36f0dc2576c75c4f513ce3.tar.gz nextcloud-server-3690ce1b36cf771f1c36f0dc2576c75c4f513ce3.zip |
Move LDAP to PSR-4
Diffstat (limited to 'apps/user_ldap/tests')
-rw-r--r-- | apps/user_ldap/tests/access.php | 2 | ||||
-rw-r--r-- | apps/user_ldap/tests/integration/abstractintegrationtest.php | 2 | ||||
-rw-r--r-- | apps/user_ldap/tests/integration/exceptionOnLostConnection.php | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/user_ldap/tests/access.php b/apps/user_ldap/tests/access.php index 3f74551eaec..ef5c09393b8 100644 --- a/apps/user_ldap/tests/access.php +++ b/apps/user_ldap/tests/access.php @@ -209,7 +209,7 @@ class Test_Access extends \Test\TestCase { public function testStringResemblesDNLDAPmod() { list($lw, $con, $um) = $this->getConnectorAndLdapMock(); - $lw = new \OCA\user_ldap\lib\LDAP(); + $lw = new \OCA\User_LDAP\LDAP(); $access = new Access($con, $lw, $um); if(!function_exists('ldap_explode_dn')) { diff --git a/apps/user_ldap/tests/integration/abstractintegrationtest.php b/apps/user_ldap/tests/integration/abstractintegrationtest.php index ff9bc9b46e7..73b4d6667d7 100644 --- a/apps/user_ldap/tests/integration/abstractintegrationtest.php +++ b/apps/user_ldap/tests/integration/abstractintegrationtest.php @@ -23,7 +23,7 @@ namespace OCA\user_ldap\tests\integration; use OCA\user_ldap\lib\Access; use OCA\user_ldap\lib\Connection; -use OCA\user_ldap\lib\LDAP; +use OCA\User_LDAP\LDAP; use OCA\User_LDAP\User\Manager; abstract class AbstractIntegrationTest { diff --git a/apps/user_ldap/tests/integration/exceptionOnLostConnection.php b/apps/user_ldap/tests/integration/exceptionOnLostConnection.php index 4813bd9ff5e..007c1116d05 100644 --- a/apps/user_ldap/tests/integration/exceptionOnLostConnection.php +++ b/apps/user_ldap/tests/integration/exceptionOnLostConnection.php @@ -20,7 +20,7 @@ */ use OC\ServerNotAvailableException; -use OCA\user_ldap\lib\LDAP; +use OCA\User_LDAP\LDAP; /** * Class ExceptionOnLostConnection @@ -51,7 +51,7 @@ class ExceptionOnLostConnection { /** @var string */ private $ldapHost; - /** @var OCA\user_ldap\lib\LDAP */ + /** @var \OCA\User_LDAP\LDAP */ private $ldap; /** @var bool */ |