diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-12 16:25:14 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-25 16:04:58 +0200 |
commit | 391531851cb73d7f6e7f989f481772f09f9f00a6 (patch) | |
tree | 6a7d77006907a5a0d423115cab5a7745d1ea8b2b /apps/user_ldap/tests/User_LDAPTest.php | |
parent | 3690ce1b36cf771f1c36f0dc2576c75c4f513ce3 (diff) | |
download | nextcloud-server-391531851cb73d7f6e7f989f481772f09f9f00a6.tar.gz nextcloud-server-391531851cb73d7f6e7f989f481772f09f9f00a6.zip |
Move interface to PSR-4
Diffstat (limited to 'apps/user_ldap/tests/User_LDAPTest.php')
-rw-r--r-- | apps/user_ldap/tests/User_LDAPTest.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/user_ldap/tests/User_LDAPTest.php b/apps/user_ldap/tests/User_LDAPTest.php index d67dafb90eb..f13240aa248 100644 --- a/apps/user_ldap/tests/User_LDAPTest.php +++ b/apps/user_ldap/tests/User_LDAPTest.php @@ -30,7 +30,6 @@ namespace OCA\User_LDAP\Tests; use OCA\User_LDAP\User_LDAP as UserLDAP; use \OCA\user_ldap\lib\Access; use \OCA\user_ldap\lib\Connection; -use \OCA\user_ldap\lib\ILDAPWrapper; /** * Class Test_User_Ldap_Direct @@ -65,7 +64,7 @@ class User_LDAPTest extends \Test\TestCase { unset($uMethods[array_search('getDN', $uMethods)]); unset($uMethods[array_search('__construct', $uMethods)]); } - $lw = $this->getMock('\OCA\user_ldap\lib\ILDAPWrapper'); + $lw = $this->getMock('\OCA\User_LDAP\ILDAPWrapper'); $connector = $this->getMock('\OCA\user_ldap\lib\Connection', $conMethods, array($lw, null, null)); |