Skip to content

Commit

Permalink
test(claptests): fix test known goods to new error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
kbknapp committed Apr 3, 2015
1 parent 18dbcf3 commit 08779ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions claptests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
cmds = {'help short: ': ['{} -h | wc -l'.format(_bin), ['26']],
'help long: ': ['{} --help | wc -l'.format(_bin), ['26']],
'help subcmd: ': ['{} help | wc -l'.format(_bin), ['26']],
'excluded first: ': ['{} -f -F'.format(_bin), ['The argument -F is mutually exclusive with one or more other arguments',
'excluded first: ': ['{} -f -F'.format(_bin), ['The argument -f cannot be used with one or more of the other specified arguments',
'USAGE:',
' claptests [FLAGS] [OPTIONS] --long-option-2=option2 [POSITIONAL] [SUBCOMMANDS]',
'For more information try --help']],
'excluded last: ': ['{} -F -f'.format(_bin), ['The argument -f is mutually exclusive with one or more other arguments',
'excluded last: ': ['{} -F -f'.format(_bin), ['The argument -f cannot be used with one or more of the other specified arguments',
'USAGE:',
' claptests [FLAGS] [OPTIONS] --long-option-2=option2 [POSITIONAL] [SUBCOMMANDS]',
'For more information try --help']],
Expand Down

0 comments on commit 08779ea

Please sign in to comment.