Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-06-01 15:29:31 +0300
committerMorris Jobke <hey@morrisjobke.de>2016-10-20 21:27:44 +0300
commit246bb9f33d23340d821384b25097066f65c5d483 (patch)
tree1f5b8692db952c537e54f1816eff9ec9949560a7 /apps/federatedfilesharing/tests/TestCase.php
parent98c846456417989d995fe868731e2b1bd77f0f37 (diff)
Move OC\Files\Storage\Shared to the right namespace
Diffstat (limited to 'apps/federatedfilesharing/tests/TestCase.php')
-rw-r--r--apps/federatedfilesharing/tests/TestCase.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/federatedfilesharing/tests/TestCase.php b/apps/federatedfilesharing/tests/TestCase.php
index f8a47f27336..3ce1cac860c 100644
--- a/apps/federatedfilesharing/tests/TestCase.php
+++ b/apps/federatedfilesharing/tests/TestCase.php
@@ -113,7 +113,7 @@ abstract class TestCase extends \Test\TestCase {
* reset init status for the share storage
*/
protected static function resetStorage() {
- $storage = new \ReflectionClass('\OC\Files\Storage\Shared');
+ $storage = new \ReflectionClass('\OCA\Files_Sharing\SharedStorage');
$isInitialized = $storage->getProperty('initialized');
$isInitialized->setAccessible(true);
$isInitialized->setValue($storage, false);