summaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-10-17 01:18:02 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-10-17 01:18:02 +0200
commit595b13f1e03a4300beee1396333a4b4337337df5 (patch)
tree29b420298e4ec82d0c5909567edae32c9bd2e34e /tests/lib
parent77378fa1893267bbdd6ee2f7805a34c1d5b0977b (diff)
downloadnextcloud-server-595b13f1e03a4300beee1396333a4b4337337df5.tar.gz
nextcloud-server-595b13f1e03a4300beee1396333a4b4337337df5.zip
prevent the remaining ob_clean related errors
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/filesystem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/filesystem.php b/tests/lib/filesystem.php
index 4bfa23884f4..43cf2e53f3f 100644
--- a/tests/lib/filesystem.php
+++ b/tests/lib/filesystem.php
@@ -87,7 +87,7 @@ class OC_FILEYSYSTEM_Test extends OC_TestCase
ob_start();
OC_Filesystem::readfile('/dummy');
$this->assertEquals('foo', ob_get_contents(),'Unexpected output of readfile');
- ob_end_clean();
+ @ob_end_clean();
}
public function isReadable(){