diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-15 17:40:07 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-15 17:40:07 +0100 |
commit | c0f3d8578a48ceee1a45fda4077696643747fc45 (patch) | |
tree | 3d4f9f583c09b81089962ea2f14bd328f19e1407 /tests | |
parent | e3ba0c3082841afe84b677fdc1fc07692c5a6cd3 (diff) | |
download | nextcloud-server-c0f3d8578a48ceee1a45fda4077696643747fc45.tar.gz nextcloud-server-c0f3d8578a48ceee1a45fda4077696643747fc45.zip |
folder should be created :-(
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/files/storage/mappedlocalwithdotteddatadir.php | 2 |
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)); } |