fixed underscored plugin name for coverage, now it must be camel-cased.

This commit is contained in:
hiromi2424 2011-06-03 07:47:38 +09:00
parent b6659c83e7
commit dcbf36c10a

View file

@ -74,7 +74,7 @@ abstract class BaseCoverageReport {
$this->appTest = true; $this->appTest = true;
} }
if ($reporter->params['plugin']) { if ($reporter->params['plugin']) {
$this->pluginTest = Inflector::underscore($reporter->params['plugin']); $this->pluginTest = Inflector::camelize($reporter->params['plugin']);
} }
} }