summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-03-03 12:04:27 +0100
committerGitHub <noreply@github.com>2017-03-03 12:04:27 +0100
commit9f82bb9b4f8f4ed3fb474ae77b8e30a931e25d89 (patch)
tree498dd40f72034f5a9c978b7284ffb6904ee21a50 /apps
parentdd646fdf58c22d034b083b2a1c0a7acfe250b9b2 (diff)
parent6174a514b76f2e1c32c6fce6de6a23cfac414558 (diff)
downloadnextcloud-server-9f82bb9b4f8f4ed3fb474ae77b8e30a931e25d89.tar.gz
nextcloud-server-9f82bb9b4f8f4ed3fb474ae77b8e30a931e25d89.zip
Merge pull request #3689 from nextcloud/cleanup-legacy-classes
Cleanup not used legacy classes
Diffstat (limited to 'apps')
-rw-r--r--apps/federatedfilesharing/tests/TestCase.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/federatedfilesharing/tests/TestCase.php b/apps/federatedfilesharing/tests/TestCase.php
index 3ce1cac860c..7ccf76bbbc6 100644
--- a/apps/federatedfilesharing/tests/TestCase.php
+++ b/apps/federatedfilesharing/tests/TestCase.php
@@ -23,6 +23,7 @@
namespace OCA\FederatedFileSharing\Tests;
use OC\Files\Filesystem;
+use OC\Group\Database;
/**
* Class Test_Files_Sharing_Base
@@ -76,7 +77,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 Database());
parent::tearDownAfterClass();
}