diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-10-17 01:18:02 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-10-17 01:18:02 +0200 |
commit | 595b13f1e03a4300beee1396333a4b4337337df5 (patch) | |
tree | 29b420298e4ec82d0c5909567edae32c9bd2e34e /tests/index.php | |
parent | 77378fa1893267bbdd6ee2f7805a34c1d5b0977b (diff) | |
download | nextcloud-server-595b13f1e03a4300beee1396333a4b4337337df5.tar.gz nextcloud-server-595b13f1e03a4300beee1396333a4b4337337df5.zip |
prevent the remaining ob_clean related errors
Diffstat (limited to 'tests/index.php')
-rw-r--r-- | tests/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/index.php b/tests/index.php index 08e53f1a575..34e1d4166ce 100644 --- a/tests/index.php +++ b/tests/index.php @@ -29,7 +29,7 @@ require_once('../lib/base.php'); OC_Util::checkAdminUser(); $testCases=loadFiles(__DIR__,array('index.php','templates')); -ob_end_clean(); +@ob_end_clean(); $testResults=array(); foreach($testCases as $testCaseClass){ $testCase=new $testCaseClass(); |