diff options
author | Joas Schilling <coding@schilljs.com> | 2016-07-01 15:45:58 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-07-01 15:45:58 +0200 |
commit | 497c3fbfd7863b160bd5b3b184e2c2892adbf80b (patch) | |
tree | 0baaf014f426c16226ece5c9d3853820cd8181b0 | |
parent | 8ab26381a402e97ea51fceea2ebf0036bc131fbe (diff) | |
download | nextcloud-server-497c3fbfd7863b160bd5b3b184e2c2892adbf80b.tar.gz nextcloud-server-497c3fbfd7863b160bd5b3b184e2c2892adbf80b.zip |
Also fix the dav test
-rw-r--r-- | apps/dav/tests/unit/connector/sabre/file.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/dav/tests/unit/connector/sabre/file.php b/apps/dav/tests/unit/connector/sabre/file.php index 8bbef225483..f69edf4c622 100644 --- a/apps/dav/tests/unit/connector/sabre/file.php +++ b/apps/dav/tests/unit/connector/sabre/file.php @@ -48,6 +48,8 @@ class File extends \Test\TestCase { parent::setUp(); \OC_Hook::clear(); + $storageFactory = \OC\Files\Filesystem::getLoader(); + $this->invokePrivate($storageFactory, 'storageWrappers', [[]]); $this->user = $this->getUniqueID('user_'); $userManager = \OC::$server->getUserManager(); |