tests: updates conflict tests to new more precise output

This commit is contained in:
Kevin K 2016-10-31 00:35:13 -04:00
parent 5c70e1a01b
commit 44f6b1edbf
No known key found for this signature in database
GPG key ID: 17218E4B3692F01A

View file

@ -5,10 +5,10 @@ include!("../clap-test.rs");
use clap::{App, Arg, ErrorKind, ArgGroup};
static CONFLICT_ERR: &'static str = "error: The argument '--flag' cannot be used with '-F'
static CONFLICT_ERR: &'static str = "error: The argument '-F' cannot be used with '--flag'
USAGE:
clap-test <positional> <positional2> -F --long-option-2 <option2>
clap-test <positional> <positional2> --flag --long-option-2 <option2>
For more information try --help";