mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixed missing array wrap in UpgradeShell::tests()
This commit is contained in:
parent
c2eae6caf8
commit
6c9c36bc0e
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ class UpgradeShell extends Shell {
|
|||
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(
|
||||
|
|
Loading…
Reference in a new issue