Fixed small typo in CakeTestLoader.php.

This commit is contained in:
Thomas Ploch 2011-05-18 16:14:36 +02:00
parent c30ba40bd5
commit 2b17988cb7

View file

@ -55,7 +55,7 @@ class CakeTestLoader extends PHPUnit_Runner_StandardTestSuiteLoader {
} elseif (!empty($params['app'])) {
$result = APP_TEST_CASES;
} else if (!empty($params['plugin']) && CakePlugin::loaded($params['plugin'])) {
$pluginPath = CakePLugin::path($params['plugin']);
$pluginPath = CakePlugin::path($params['plugin']);
$result = $pluginPath . 'Test' . DS . 'Case';
}
return $result;