Fixed TestShell options, removed space which caused the option to not be recognized.

This commit is contained in:
Renan Gonçalves 2012-11-06 01:44:51 +01:00
parent c7f2a64ede
commit 929ed57844

View file

@ -114,7 +114,7 @@ class TestShell extends Shell {
))->addOption('stop-on-failure', array(
'help' => __d('cake_console', 'Stop execution upon first failure.'),
'boolean' => true
))->addOption('stop-on-skipped ', array(
))->addOption('stop-on-skipped', array(
'help' => __d('cake_console', 'Stop execution upon first skipped test.'),
'boolean' => true
))->addOption('stop-on-incomplete', array(
@ -132,7 +132,7 @@ class TestShell extends Shell {
))->addOption('no-globals-backup', array(
'help' => __d('cake_console', 'Do not backup and restore $GLOBALS for each test.'),
'boolean' => true
))->addOption('static-backup ', array(
))->addOption('static-backup', array(
'help' => __d('cake_console', 'Backup and restore static attributes for each test.'),
'boolean' => true
))->addOption('syntax-check', array(