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:
authorRobin Appelman <icewind@owncloud.com>2013-06-06 22:47:20 +0400
committerVincent Petry <pvince81@owncloud.com>2013-12-03 13:47:26 +0400
commit6eef3c9c4c95a97d7446dfc8dda81114e612abf7 (patch)
tree51f9ef22633894109139efca96421f9f130de0f8 /tests
parenta385e86e5822a3147c4dbf6fb30432ab91004b9f (diff)
Make rmdir recursive for local storage
Backport of 63c898c0
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/files/storage/storage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php
index ea3ca7d19e0..9ee49f80400 100644
--- a/tests/lib/files/storage/storage.php
+++ b/tests/lib/files/storage/storage.php
@@ -281,7 +281,7 @@ abstract class Storage extends \PHPUnit_Framework_TestCase {
$this->assertEquals(file_get_contents($textFile), $content);
}
- public function testTouchCreateFile(){
+ public function testTouchCreateFile() {
$this->assertFalse($this->instance->file_exists('foo'));
$this->instance->touch('foo');
$this->assertTrue($this->instance->file_exists('foo'));