summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-10-10 12:51:15 +0200
committerRobin Appelman <icewind@owncloud.com>2012-10-10 12:51:15 +0200
commitc88c54bbb054fe2d79b3a93604989d527b5dd444 (patch)
treeb8468b49889399025fec238a438034dd00cec53f
parent4b9fbf46e554f8bb368e6cf5a8f75ca5c56e8228 (diff)
downloadnextcloud-server-c88c54bbb054fe2d79b3a93604989d527b5dd444.tar.gz
nextcloud-server-c88c54bbb054fe2d79b3a93604989d527b5dd444.zip
make sure we can do our tests again
-rw-r--r--lib/cache/file.php4
-rw-r--r--tests/lib/cache/file.php2
-rw-r--r--tests/lib/filesystem.php2
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/cache/file.php b/lib/cache/file.php
index 27d8b19f36e..f9ecf41dcac 100644
--- a/lib/cache/file.php
+++ b/lib/cache/file.php
@@ -15,11 +15,11 @@ class OC_Cache_File{
}
if(OC_User::isLoggedIn()) {
$subdir = 'cache';
- $view = new OC_FilesystemView('/'.OC_User::getUser());
+ $view = new \OC\Files\View('/'.OC_User::getUser());
if(!$view->file_exists($subdir)) {
$view->mkdir($subdir);
}
- $this->storage = new OC_FilesystemView('/'.OC_User::getUser().'/'.$subdir);
+ $this->storage = new \OC\Files\View('/'.OC_User::getUser().'/'.$subdir);
return $this->storage;
}else{
OC_Log::write('core', 'Can\'t get cache storage, user not logged in', OC_Log::ERROR);
diff --git a/tests/lib/cache/file.php b/tests/lib/cache/file.php
index 1dd1ff7fa87..3e8fd8c1bb1 100644
--- a/tests/lib/cache/file.php
+++ b/tests/lib/cache/file.php
@@ -51,7 +51,7 @@ class Test_Cache_File extends Test_Cache {
OC_User::setUserId('test');
//set up the users dir
- $rootView=new OC_FilesystemView('');
+ $rootView=new \OC\Files\View('');
$rootView->mkdir('/test');
$this->instance=new OC_Cache_File();
diff --git a/tests/lib/filesystem.php b/tests/lib/filesystem.php
index 8fc3ce641da..b402b86af1f 100644
--- a/tests/lib/filesystem.php
+++ b/tests/lib/filesystem.php
@@ -84,7 +84,7 @@ class Test_Filesystem extends UnitTestCase {
OC_Filesystem::mount('OC\Files\Storage\Temporary', array(), '/');
- $rootView=new OC_FilesystemView('');
+ $rootView=new \OC\Files\View('');
$rootView->mkdir('/'.$user);
$rootView->mkdir('/'.$user.'/files');