diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-10-29 16:38:16 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-10-29 16:38:16 +0100 |
commit | 106b9eb55c154c6ef4fac47fb62f70dbbd98a126 (patch) | |
tree | ccdc5e17701226e8f0d15106fdd36c764f9e636d /tests | |
parent | 7d10ec41e6817472eb831c3891f7d0a0d514037c (diff) | |
parent | 16cfca6a5fb3db897246e6ac9ccb7420cf256240 (diff) | |
download | nextcloud-server-106b9eb55c154c6ef4fac47fb62f70dbbd98a126.tar.gz nextcloud-server-106b9eb55c154c6ef4fac47fb62f70dbbd98a126.zip |
Merge pull request #11409 from owncloud/watcher-reuse
Pass the cached data to the filesystem watcher
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/files/view.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index 8d56ecd9003..5f030f29fa7 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -177,8 +177,9 @@ class View extends \PHPUnit_Framework_TestCase { function testCacheIncompleteFolder() { $storage1 = $this->getTestStorage(false); - \OC\Files\Filesystem::mount($storage1, array(), '/'); - $rootView = new \OC\Files\View(''); + \OC\Files\Filesystem::clearMounts(); + \OC\Files\Filesystem::mount($storage1, array(), '/incomplete'); + $rootView = new \OC\Files\View('/incomplete'); $entries = $rootView->getDirectoryContent('/'); $this->assertEquals(3, count($entries)); |