Skip to content

Commit

Permalink
Fixed missing array wrap in UpgradeShell::tests()
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiemill committed Nov 5, 2011
1 parent c2eae6c commit 6c9c36b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Console/Command/UpgradeShell.php
Expand Up @@ -102,7 +102,7 @@ public function all() {
public function tests() {
$this->_paths = array(APP . 'tests' . DS);
if (!empty($this->params['plugin'])) {
$this->_paths = App::pluginPath($this->params['plugin']) . 'tests' . DS;
$this->_paths = array(App::pluginPath($this->params['plugin']) . 'tests' . DS);
}
$patterns = array(
array(
Expand Down

0 comments on commit 6c9c36b

Please sign in to comment.