summaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-06-14 01:22:58 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-06-14 01:23:10 +0200
commit141ffbb1f53f465e64125a020dee6304075a51aa (patch)
tree9915baa33e68f704d5d8cd67546cf162873834e1 /tests/lib
parentf6eb7c120538bea8e488a868f9f3d99906a1ea0f (diff)
downloadnextcloud-server-141ffbb1f53f465e64125a020dee6304075a51aa.tar.gz
nextcloud-server-141ffbb1f53f465e64125a020dee6304075a51aa.zip
small fix in filesystem test
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/filesystem.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/lib/filesystem.php b/tests/lib/filesystem.php
index 73b0069519f..1b1703a06d7 100644
--- a/tests/lib/filesystem.php
+++ b/tests/lib/filesystem.php
@@ -84,7 +84,6 @@ class OC_FILEYSYSTEM_Test extends OC_TestCase
public function readfile(){
OC_FILESYSTEM::file_put_contents('/dummy','foo');
- ob_clean();
ob_start();
OC_FILESYSTEM::readfile('/dummy');
$this->assertEquals('foo', ob_get_contents(),'Unexpected output of readfile');