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
This commit is contained in:
parent
7e3f572655
commit
b0e8e50a19
1 changed files with 2 additions and 2 deletions
|
|
@ -243,9 +243,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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue