summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/tests/WizardTest.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-05-12 16:25:14 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2016-05-25 16:04:58 +0200
commit391531851cb73d7f6e7f989f481772f09f9f00a6 (patch)
tree6a7d77006907a5a0d423115cab5a7745d1ea8b2b /apps/user_ldap/tests/WizardTest.php
parent3690ce1b36cf771f1c36f0dc2576c75c4f513ce3 (diff)
downloadnextcloud-server-391531851cb73d7f6e7f989f481772f09f9f00a6.tar.gz
nextcloud-server-391531851cb73d7f6e7f989f481772f09f9f00a6.zip
Move interface to PSR-4
Diffstat (limited to 'apps/user_ldap/tests/WizardTest.php')
-rw-r--r--apps/user_ldap/tests/WizardTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_ldap/tests/WizardTest.php b/apps/user_ldap/tests/WizardTest.php
index 83cd58d2231..f74defa8ae2 100644
--- a/apps/user_ldap/tests/WizardTest.php
+++ b/apps/user_ldap/tests/WizardTest.php
@@ -27,10 +27,10 @@ namespace OCA\User_LDAP\tests;
use \OCA\User_LDAP\Wizard;
-// use \OCA\user_ldap\User_LDAP as UserLDAP;
+// use \OCA\User_LDAP\User_LDAP as UserLDAP;
// use \OCA\user_ldap\lib\Access;
// use \OCA\user_ldap\lib\Configuration;
-// use \OCA\user_ldap\lib\ILDAPWrapper;
+// use \OCA\User_LDAP\ILDAPWrapper;
/**
* Class Test_Wizard
@@ -63,7 +63,7 @@ class WizardTest extends \Test\TestCase {
$connMethods = get_class_methods('\OCA\user_ldap\lib\Connection');
$accMethods = get_class_methods('\OCA\user_ldap\lib\Access');
}
- $lw = $this->getMock('\OCA\user_ldap\lib\ILDAPWrapper');
+ $lw = $this->getMock('\OCA\User_LDAP\ILDAPWrapper');
$conf = $this->getMock('\OCA\user_ldap\lib\Configuration',
$confMethods,
array($lw, null, null));