Skip to content

Commit

Permalink
Fixed TestShell options, removed space which caused the option to not…
Browse files Browse the repository at this point in the history
… be recognized.
  • Loading branch information
renan committed Nov 6, 2012
1 parent c7f2a64 commit 929ed57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Console/Command/TestShell.php
Expand Up @@ -114,7 +114,7 @@ public function getOptionParser() {
))->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(
Expand All @@ -132,7 +132,7 @@ public function getOptionParser() {
))->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(
Expand Down

0 comments on commit 929ed57

Please sign in to comment.