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:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-03-12 18:30:10 +0400
committerThomas Mueller <thomas.mueller@tmit.eu>2013-03-12 22:57:56 +0400
commit9b9497bedf457fc85c8df66f6b7e5bc114b001d1 (patch)
treee1e53c1fb5af1acd10c46b9e549996dbf57b09a0 /tests
parent8846edd919dc6bf2b7ac99e398d58c08db83978b (diff)
fixing various filesystem/storage unit tests on windows
fixing copy operation on mapper
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/files/storage/storage.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php
index f78f66d8b8a..3d68efea5fc 100644
--- a/tests/lib/files/storage/storage.php
+++ b/tests/lib/files/storage/storage.php
@@ -224,8 +224,7 @@ abstract class Storage extends \PHPUnit_Framework_TestCase {
}
public function testSearchInSubFolder() {
- $this->instance->mkdir('sub')
- ;
+ $this->instance->mkdir('sub');
$textFile = \OC::$SERVERROOT . '/tests/data/lorem.txt';
$this->instance->file_put_contents('/sub/lorem.txt', file_get_contents($textFile, 'r'));
$pngFile = \OC::$SERVERROOT . '/tests/data/logo-wide.png';