Merge branch '1.3' of github.com:cakephp/cakephp1x into 1.3

This commit is contained in:
Mark Story 2010-01-26 14:09:10 -05:00
commit 7e1863df84

View file

@ -23,7 +23,7 @@ define('APP_TEST_CASES', TESTS . 'cases');
define('APP_TEST_GROUPS', TESTS . 'groups'); 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. * of TestCase and TestSuite classes that the user has selected.
* *
* @package cake * @package cake
@ -103,7 +103,7 @@ class TestManager {
if ($this->appTest) { if ($this->appTest) {
$test =& new TestSuite(__('All App Tests', true)); $test =& new TestSuite(__('All App Tests', true));
} else if ($this->pluginTest) { } 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 { } else {
$test =& new TestSuite(__('All Core Tests', true)); $test =& new TestSuite(__('All Core Tests', true));
} }