mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Merge branch '1.3' of github.com:cakephp/cakephp1x into 1.3
This commit is contained in:
commit
7e1863df84
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ define('APP_TEST_CASES', TESTS . 'cases');
|
|||
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
|
||||
|
@ -103,7 +103,7 @@ class TestManager {
|
|||
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));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue