Skip to content

Commit 22b5b3d

Browse files
authored
fix clap
1 parent f742477 commit 22b5b3d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

bins/revme/src/cmd/statetest.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@ pub struct Cmd {
1616
/// If multiple paths are specified they will be run in sequence.
1717
///
1818
/// Folders will be searched recursively for files with the extension `.json`.
19-
#[clap(required = true, num_args = 1..)]
19+
#[arg(required = true, num_args = 1..)]
2020
paths: Vec<PathBuf>,
2121
/// Run tests in a single thread
22-
#[clap(short = 's', long)]
22+
#[arg(short = 's', long)]
2323
single_thread: bool,
2424
/// Output results in JSON format
2525
///
2626
/// It will stop second run of evm on failure.
27-
#[clap(long)]
27+
#[arg(long)]
2828
json: bool,
2929
/// Output outcome in JSON format
3030
///
3131
/// If `--json` is true, this is implied.
3232
///
3333
/// It will stop second run of EVM on failure.
34-
#[clap(short = 'o', long)]
34+
#[arg(short = 'o', long)]
3535
json_outcome: bool,
3636
/// Keep going after a test failure
37-
#[clap(long, alias = "no-fail-fast")]
37+
#[arg(long, alias = "no-fail-fast")]
3838
keep_going: bool,
3939
}
4040

0 commit comments

Comments
 (0)