diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-12 16:37:49 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-25 16:04:59 +0200 |
commit | aa7b6003834ec26f777443c9b28d808f098c2e29 (patch) | |
tree | 16c32dfa56dd03e2bfb9ca092ef675d13466e29e /apps/user_ldap/tests/WizardTest.php | |
parent | af0a6961b1ae867e354ecf71d61708af9618c44f (diff) | |
download | nextcloud-server-aa7b6003834ec26f777443c9b28d808f098c2e29.tar.gz nextcloud-server-aa7b6003834ec26f777443c9b28d808f098c2e29.zip |
Move Configuration to PSR-4
Diffstat (limited to 'apps/user_ldap/tests/WizardTest.php')
-rw-r--r-- | apps/user_ldap/tests/WizardTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_ldap/tests/WizardTest.php b/apps/user_ldap/tests/WizardTest.php index f0767ea635a..d962e057911 100644 --- a/apps/user_ldap/tests/WizardTest.php +++ b/apps/user_ldap/tests/WizardTest.php @@ -29,7 +29,7 @@ use \OCA\User_LDAP\Wizard; // use \OCA\User_LDAP\User_LDAP as UserLDAP; // use \OCA\user_ldap\lib\Access; -// use \OCA\user_ldap\lib\Configuration; +// use \OCA\User_LDAP\Configuration; // use \OCA\User_LDAP\ILDAPWrapper; /** @@ -59,12 +59,12 @@ class WizardTest extends \Test\TestCase { static $accMethods; if(is_null($confMethods)) { - $confMethods = get_class_methods('\OCA\user_ldap\lib\Configuration'); + $confMethods = get_class_methods('\OCA\User_LDAP\Configuration'); $connMethods = get_class_methods('\OCA\User_LDAP\Connection'); $accMethods = get_class_methods('\OCA\user_ldap\lib\Access'); } $lw = $this->getMock('\OCA\User_LDAP\ILDAPWrapper'); - $conf = $this->getMock('\OCA\user_ldap\lib\Configuration', + $conf = $this->getMock('\OCA\User_LDAP\Configuration', $confMethods, array($lw, null, null)); |