mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixed TestShell options, removed space which caused the option to not be recognized.
This commit is contained in:
parent
c7f2a64ede
commit
929ed57844
1 changed files with 2 additions and 2 deletions
|
@ -114,7 +114,7 @@ class TestShell extends Shell {
|
||||||
))->addOption('stop-on-failure', array(
|
))->addOption('stop-on-failure', array(
|
||||||
'help' => __d('cake_console', 'Stop execution upon first failure.'),
|
'help' => __d('cake_console', 'Stop execution upon first failure.'),
|
||||||
'boolean' => true
|
'boolean' => true
|
||||||
))->addOption('stop-on-skipped ', array(
|
))->addOption('stop-on-skipped', array(
|
||||||
'help' => __d('cake_console', 'Stop execution upon first skipped test.'),
|
'help' => __d('cake_console', 'Stop execution upon first skipped test.'),
|
||||||
'boolean' => true
|
'boolean' => true
|
||||||
))->addOption('stop-on-incomplete', array(
|
))->addOption('stop-on-incomplete', array(
|
||||||
|
@ -132,7 +132,7 @@ class TestShell extends Shell {
|
||||||
))->addOption('no-globals-backup', array(
|
))->addOption('no-globals-backup', array(
|
||||||
'help' => __d('cake_console', 'Do not backup and restore $GLOBALS for each test.'),
|
'help' => __d('cake_console', 'Do not backup and restore $GLOBALS for each test.'),
|
||||||
'boolean' => true
|
'boolean' => true
|
||||||
))->addOption('static-backup ', array(
|
))->addOption('static-backup', array(
|
||||||
'help' => __d('cake_console', 'Backup and restore static attributes for each test.'),
|
'help' => __d('cake_console', 'Backup and restore static attributes for each test.'),
|
||||||
'boolean' => true
|
'boolean' => true
|
||||||
))->addOption('syntax-check', array(
|
))->addOption('syntax-check', array(
|
||||||
|
|
Loading…
Reference in a new issue