mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 11:06:15 +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
|
@ -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