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
path: root/tests
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-02-15 20:40:07 +0400
committerThomas Mueller <thomas.mueller@tmit.eu>2013-02-15 20:40:07 +0400
commitc0f3d8578a48ceee1a45fda4077696643747fc45 (patch)
tree3d4f9f583c09b81089962ea2f14bd328f19e1407 /tests
parente3ba0c3082841afe84b677fdc1fc07692c5a6cd3 (diff)
folder should be created :-(
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/files/storage/mappedlocalwithdotteddatadir.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/lib/files/storage/mappedlocalwithdotteddatadir.php b/tests/lib/files/storage/mappedlocalwithdotteddatadir.php
index abd0b3d85c4..d2e5e2e97af 100644
--- a/tests/lib/files/storage/mappedlocalwithdotteddatadir.php
+++ b/tests/lib/files/storage/mappedlocalwithdotteddatadir.php
@@ -27,8 +27,10 @@ class MappedLocalWithDottedDataDir extends Storage {
* @var string tmpDir
*/
private $tmpDir;
+
public function setUp() {
$this->tmpDir = \OC_Helper::tmpFolder().'dir.123'.DIRECTORY_SEPARATOR;
+ mkdir($this->tmpDir);
$this->instance=new \OC\Files\Storage\MappedLocal(array('datadir'=>$this->tmpDir));
}