Skip to content

Commit

Permalink
Fixed small typo in CakeTestLoader.php.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Ploch committed May 18, 2011
1 parent c30ba40 commit 2b17988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/TestSuite/CakeTestLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected static function _basePath($params) {
} 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;
Expand Down

0 comments on commit 2b17988

Please sign in to comment.