Skip to content

Commit

Permalink
Fixing notice due by using a non-existent variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
renan committed Jan 26, 2010
1 parent c69010d commit 3e4a963
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cake/tests/lib/test_manager.php
Expand Up @@ -23,7 +23,7 @@
define('APP_TEST_GROUPS', TESTS . 'groups');

/**
* TestManager is the base class that handles loading and initiating the running
* TestManager is the base class that handles loading and initiating the running
* of TestCase and TestSuite classes that the user has selected.
*
* @package cake
Expand Down Expand Up @@ -103,7 +103,7 @@ function runAllTests(&$reporter, $testing = false) {
if ($this->appTest) {
$test =& new TestSuite(__('All App Tests', true));
} else if ($this->pluginTest) {
$test =& new TestSuite(sprintf(__('All %s Plugin Tests', true), Inflector::humanize($manager->pluginTest)));
$test =& new TestSuite(sprintf(__('All %s Plugin Tests', true), Inflector::humanize($this->pluginTest)));
} else {
$test =& new TestSuite(__('All Core Tests', true));
}
Expand Down

0 comments on commit 3e4a963

Please sign in to comment.