diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-09-07 15:22:01 +0200 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-09-07 15:22:01 +0200 |
commit | 3829460ab8cbb6de65c53583a20fd04cbe7927dd (patch) | |
tree | 4dc24845a5eb31b17510a621e14c15b51f16bf7b /tests/lib/filestorage | |
parent | 785aa751bb5f9a4bcdd677b96207550482e17d3c (diff) | |
download | nextcloud-server-3829460ab8cbb6de65c53583a20fd04cbe7927dd.tar.gz nextcloud-server-3829460ab8cbb6de65c53583a20fd04cbe7927dd.zip |
adding space between) and {
Diffstat (limited to 'tests/lib/filestorage')
-rw-r--r-- | tests/lib/filestorage/commontest.php | 6 | ||||
-rw-r--r-- | tests/lib/filestorage/local.php | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/tests/lib/filestorage/commontest.php b/tests/lib/filestorage/commontest.php index ab5375ec2b0..89e83589e5d 100644 --- a/tests/lib/filestorage/commontest.php +++ b/tests/lib/filestorage/commontest.php @@ -25,15 +25,15 @@ class Test_Filestorage_CommonTest extends Test_FileStorage { * @var string tmpDir */ private $tmpDir; - public function setUp(){ + public function setUp() { $this->tmpDir=get_temp_dir().'/filestoragecommon'; - if(!file_exists($this->tmpDir)){ + if(!file_exists($this->tmpDir)) { mkdir($this->tmpDir); } $this->instance=new OC_Filestorage_CommonTest(array('datadir'=>$this->tmpDir)); } - public function tearDown(){ + public function tearDown() { OC_Helper::rmdirr($this->tmpDir); } } diff --git a/tests/lib/filestorage/local.php b/tests/lib/filestorage/local.php index 692f05f9fca..f68fb69b97f 100644 --- a/tests/lib/filestorage/local.php +++ b/tests/lib/filestorage/local.php @@ -25,12 +25,12 @@ class Test_Filestorage_Local extends Test_FileStorage { * @var string tmpDir */ private $tmpDir; - public function setUp(){ + public function setUp() { $this->tmpDir=OC_Helper::tmpFolder(); $this->instance=new OC_Filestorage_Local(array('datadir'=>$this->tmpDir)); } - public function tearDown(){ + public function tearDown() { OC_Helper::rmdirr($this->tmpDir); } } |