aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/tests/TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_sharing/tests/TestCase.php')
-rw-r--r--apps/files_sharing/tests/TestCase.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/apps/files_sharing/tests/TestCase.php b/apps/files_sharing/tests/TestCase.php
index abdb6a2d60f..2bd83d6c9c2 100644
--- a/apps/files_sharing/tests/TestCase.php
+++ b/apps/files_sharing/tests/TestCase.php
@@ -33,7 +33,6 @@
namespace OCA\Files_Sharing\Tests;
use OC\Files\Filesystem;
-use OC\Files\View;
use OCA\Files_Sharing\AppInfo\Application;
use OCA\Files_Sharing\External\MountProvider as ExternalMountProvider;
use OCA\Files_Sharing\MountProvider;
@@ -212,12 +211,7 @@ abstract class TestCase extends \Test\TestCase {
\OC::$server->getUserSession()->setUser(null);
\OC\Files\Filesystem::tearDown();
\OC::$server->getUserSession()->login($user, $password);
- // We need to get the directory listing to trigger the lazy user folder
- // to create the files directory. Since the filecache might get cleared
- // in the cache, any follow up test case may fail as with object storage
- // the filecache represents the file structure
- Filesystem::initMountPoints($user);
- \OC::$server->getUserFolder($user)->getDirectoryListing();
+ \OC::$server->getUserFolder($user);
\OC_Util::setupFS($user);
}