diff options
author | Joas Schilling <coding@schilljs.com> | 2017-03-03 12:04:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-03 12:04:27 +0100 |
commit | 9f82bb9b4f8f4ed3fb474ae77b8e30a931e25d89 (patch) | |
tree | 498dd40f72034f5a9c978b7284ffb6904ee21a50 /apps | |
parent | dd646fdf58c22d034b083b2a1c0a7acfe250b9b2 (diff) | |
parent | 6174a514b76f2e1c32c6fce6de6a23cfac414558 (diff) | |
download | nextcloud-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.php | 3 |
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(); } |