diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-02-28 11:16:58 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-02-28 11:16:58 +0100 |
commit | 7ec1c0703d49639c4a5da1a593f742ac581158f3 (patch) | |
tree | 153b381367fda16b5c97a536ca565b0eb537f02c /tests | |
parent | 273d7fb4fd15eceb92e488df116c859fda7cd2d5 (diff) | |
download | nextcloud-server-7ec1c0703d49639c4a5da1a593f742ac581158f3.tar.gz nextcloud-server-7ec1c0703d49639c4a5da1a593f742ac581158f3.zip |
fix testcase runner
Diffstat (limited to 'tests')
-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 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()); } } } |