diff options
Diffstat (limited to 'tests/index.php')
-rw-r--r-- | tests/index.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/index.php b/tests/index.php index 30ebde11235..efa730f6f8f 100644 --- a/tests/index.php +++ b/tests/index.php @@ -26,8 +26,6 @@ */ $RUNTIME_NOSETUPFS=true; require_once('../lib/base.php'); -require_once('testcase.php'); -require_once('template.php'); $testCases=loadFiles(__DIR__,array('index.php','templates')); ob_end_clean(); @@ -48,7 +46,7 @@ foreach($testCases as $testCaseClass){ $testResults[$testCaseClass]=$results; } -$tmpl = new OC_TEMPLATE( 'tests', 'index'); +$tmpl = new OC_Template( 'tests', 'index'); $tmpl->assign('tests',$testResults); $tmpl->printPage(); |