]> source.dussan.org Git - nextcloud-server.git/commitdiff
folder should be created :-(
authorThomas Mueller <thomas.mueller@tmit.eu>
Fri, 15 Feb 2013 16:40:07 +0000 (17:40 +0100)
committerThomas Mueller <thomas.mueller@tmit.eu>
Fri, 15 Feb 2013 16:40:07 +0000 (17:40 +0100)
tests/lib/files/storage/mappedlocalwithdotteddatadir.php

index abd0b3d85c4f0b087ddb1fe52b4ae9d0669c1b26..d2e5e2e97aff8a84bd046410f1d5091036eb6373 100644 (file)
@@ -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));
        }