diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-08-28 15:08:18 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-09-10 17:28:25 +0200 |
commit | 08e38a107290668795653dc0a5ae6f91330bc36a (patch) | |
tree | eafaad06e5f0903a38f3861a7cc7b694a6544041 /apps/files_external/tests | |
parent | b754a8261aac7308202e21217dd9a8a3a9010a8b (diff) | |
download | nextcloud-server-08e38a107290668795653dc0a5ae6f91330bc36a.tar.gz nextcloud-server-08e38a107290668795653dc0a5ae6f91330bc36a.zip |
Fix mkdir error in mountconfig.php
Diffstat (limited to 'apps/files_external/tests')
-rw-r--r-- | apps/files_external/tests/mountconfig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index ac010464faa..fc482823843 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -58,7 +58,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { \OC_User::setUserId(self::TEST_USER1); $this->userHome = \OC_User::getHome(self::TEST_USER1); - mkdir($this->userHome); + @mkdir($this->userHome); $this->dataDir = \OC_Config::getValue( 'datadirectory', |