mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
Fixing notice due by using a non-existent variable.
This commit is contained in:
parent
c69010d04d
commit
3e4a9631da
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');
|
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));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue