Fixing notice due by using a non-existent variable.

This commit is contained in:
renan.saddam 2010-01-26 12:14:47 -02:00
parent c69010d04d
commit 3e4a9631da

View file

@ -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));
}