Skip to content

Commit

Permalink
Fixing typo in PHPUnit include file path
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Feb 21, 2011
1 parent 0b75906 commit 709ed76
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cake/tests/lib/reporter/cake_base_reporter.php
Expand Up @@ -16,7 +16,7 @@
* @since CakePHP(tm) v 1.3
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
require_once 'PHPUnit/TextUi/ResultPrinter.php';
require_once 'PHPUnit/TextUI/ResultPrinter.php';

PHP_CodeCoverage_Filter::getInstance()->addFileToBlacklist(__FILE__, 'DEFAULT');

Expand Down Expand Up @@ -61,7 +61,7 @@ class CakeBaseReporter extends PHPUnit_TextUI_ResultPrinter {
* - app - App test being run.
* - case - The case being run
* - codeCoverage - Whether the case/group being run is being code covered.
*
*
* @param string $charset The character set to output with. Defaults to UTF-8
* @param array $params Array of request parameters the reporter should use. See above.
*/
Expand Down Expand Up @@ -101,7 +101,7 @@ public function paintDocumentStart() {
* @return void
*/
public function paintDocumentEnd() {

}

/**
Expand All @@ -111,7 +111,7 @@ public function paintDocumentEnd() {
* @return void
*/
public function paintTestMenu() {

}

/**
Expand Down

0 comments on commit 709ed76

Please sign in to comment.