diff --git a/bins/revme/src/cmd/statetest.rs b/bins/revme/src/cmd/statetest.rs index 06adc2ed90..bac92b6fbe 100644 --- a/bins/revme/src/cmd/statetest.rs +++ b/bins/revme/src/cmd/statetest.rs @@ -16,25 +16,25 @@ pub struct Cmd { /// If multiple paths are specified they will be run in sequence. /// /// Folders will be searched recursively for files with the extension `.json`. - #[clap(required = true, num_args = 1..)] + #[arg(required = true, num_args = 1..)] paths: Vec, /// Run tests in a single thread - #[clap(short = 's', long)] + #[arg(short = 's', long)] single_thread: bool, /// Output results in JSON format /// /// It will stop second run of evm on failure. - #[clap(long)] + #[arg(long)] json: bool, /// Output outcome in JSON format /// /// If `--json` is true, this is implied. /// /// It will stop second run of EVM on failure. - #[clap(short = 'o', long)] + #[arg(short = 'o', long)] json_outcome: bool, /// Keep going after a test failure - #[clap(long, alias = "no-fail-fast")] + #[arg(long, alias = "no-fail-fast")] keep_going: bool, }