fix(cli): remove duplicate short options from fuzz command (#3635)

- Remove short option from fuzz command edits option
- Remove short option from fuzz command iterations option

(cherry picked from commit b0e8e50a19)
This commit is contained in:
Will Lillis 2024-09-15 04:04:12 -04:00 committed by ObserverOfTime
parent 0eb5b0a029
commit d5a1266b25

View file

@ -263,9 +263,9 @@ struct Fuzz {
pub skip: Option<Vec<String>>,
#[arg(long, help = "Subdirectory to the language")]
pub subdir: Option<String>,
#[arg(long, short, help = "Maximum number of edits to perform per fuzz test")]
#[arg(long, help = "Maximum number of edits to perform per fuzz test")]
pub edits: Option<usize>,
#[arg(long, short, help = "Number of fuzzing iterations to run per test")]
#[arg(long, help = "Number of fuzzing iterations to run per test")]
pub iterations: Option<usize>,
#[arg(long, short, help = "Regex pattern to filter tests")]
pub filter: Option<Regex>,