mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
fix: duplicate short flags in Flag Subcommand test
This commit is contained in:
parent
f7c5b098b9
commit
32db427706
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ fn flag_subcommand_short_conflict_with_arg() {
|
|||
let _ = App::new("test")
|
||||
.subcommand(App::new("some").short_flag('f').long_flag("some"))
|
||||
.arg(Arg::new("test").short('f'))
|
||||
.get_matches_from(vec!["myprog", "-ff"]);
|
||||
.get_matches_from(vec!["myprog", "-f"]);
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Reference in a new issue