aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/tests/WizardTest.php
diff options
context:
space:
mode:
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 31fd28e2fa1..9595af15a99 100644
--- a/apps/user_ldap/tests/WizardTest.php
+++ b/apps/user_ldap/tests/WizardTest.php
@@ -41,9 +41,9 @@ class WizardTest extends TestCase {
static $accMethods;
if (is_null($confMethods)) {
- $confMethods = get_class_methods('\OCA\User_LDAP\Configuration');
- $connMethods = get_class_methods('\OCA\User_LDAP\Connection');
- $accMethods = get_class_methods('\OCA\User_LDAP\Access');
+ $confMethods = get_class_methods(\OCA\User_LDAP\Configuration::class);
+ $connMethods = get_class_methods(\OCA\User_LDAP\Connection::class);
+ $accMethods = get_class_methods(\OCA\User_LDAP\Access::class);
}
/** @var ILDAPWrapper|\PHPUnit\Framework\MockObject\MockObject $lw */
$lw = $this->createMock(ILDAPWrapper::class);