File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments