summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-03-12 15:30:10 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2013-03-12 15:30:10 +0100
commita05820c6594aa3ea6f2394e8d75117d339f06ed3 (patch)
tree4f99621cb9b7fb2b5ea459d4732513b1043e58da /tests
parent818c24bd4578c151c412939ad47b20d649bd68a5 (diff)
downloadnextcloud-server-a05820c6594aa3ea6f2394e8d75117d339f06ed3.tar.gz
nextcloud-server-a05820c6594aa3ea6f2394e8d75117d339f06ed3.zip
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';