fix copy-paste mistake in phpunit plugin runDir()

This commit is contained in:
meadsteve 2013-11-25 21:49:14 +00:00
parent 080784adc5
commit 6d5bceea16

View file

@ -128,7 +128,7 @@ class PhpUnit implements \PHPCI\Plugin
protected function runDir($dirPath)
{
if (is_array($dirPath)) {
return $this->recurseArg($dirPath, array($this, "runConfigFile"));
return $this->recurseArg($dirPath, array($this, "runDir"));
} else {
$curdir = getcwd();
chdir($this->phpci->buildPath);