summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/tests/testcase.php2
-rw-r--r--apps/user_ldap/group_ldap.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/tests/testcase.php b/apps/files_sharing/tests/testcase.php
index 0950c2a62f5..b1d6facafd6 100644
--- a/apps/files_sharing/tests/testcase.php
+++ b/apps/files_sharing/tests/testcase.php
@@ -143,7 +143,7 @@ abstract class TestCase extends \Test\TestCase {
\OC_User::clearBackends();
\OC_User::useBackend('database');
\OC_Group::clearBackends();
- \OC_Group::useBackend(new \OC_Group_Database());
+ \OC_Group::useBackend(new \OC\Group\Database());
parent::tearDownAfterClass();
}
diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php
index eba39ca50f7..ff8197fb43a 100644
--- a/apps/user_ldap/group_ldap.php
+++ b/apps/user_ldap/group_ldap.php
@@ -894,6 +894,6 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface {
* compared with OC_USER_BACKEND_CREATE_USER etc.
*/
public function implementsActions($actions) {
- return (bool)(\OC_Group_Backend::COUNT_USERS & $actions);
+ return (bool)(\OC\Group\Backend::COUNT_USERS & $actions);
}
}