From 7ec1c0703d49639c4a5da1a593f742ac581158f3 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 28 Feb 2012 11:16:58 +0100 Subject: [PATCH] fix testcase runner --- tests/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/index.php b/tests/index.php index d29579a4bba..1333a83a3b9 100644 --- a/tests/index.php +++ b/tests/index.php @@ -41,7 +41,7 @@ function loadTests($dir=''){ $testCase=new TestSuite(getTestName($file)); $testCase->addFile($basedir.$file); if($testCase->getSize()>0){ - $testCase->run(new DefaultReporter()); + $testCase->run(new HtmlReporter()); } } }