diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-08-23 22:03:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 16:03:57 +0200 |
commit | 2c17045aa8fd6f01b379fbb6e5d29b9df45b9b1b (patch) | |
tree | b6de24bb5ac3e56f0ae789606263fb26b2436bdd /cli/main.rs | |
parent | dbcdd3a18e28627bc12312545b441f3e9d3c92af (diff) |
refactor(cli/tools/test): infer disable log from program state (#11803)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/cli/main.rs b/cli/main.rs index 123f638da..ad1e15643 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -1005,7 +1005,6 @@ async fn test_command( no_run: bool, doc: bool, fail_fast: Option<NonZeroUsize>, - quiet: bool, allow_none: bool, filter: Option<String>, shuffle: Option<u64>, @@ -1216,7 +1215,6 @@ async fn test_command( test_modules_to_reload, no_run, fail_fast, - quiet, true, filter.clone(), shuffle, @@ -1252,7 +1250,6 @@ async fn test_command( test_modules, no_run, fail_fast, - quiet, allow_none, filter, shuffle, @@ -1355,7 +1352,6 @@ fn get_subcommand( no_run, doc, fail_fast, - quiet, include, allow_none, filter, @@ -1367,7 +1363,6 @@ fn get_subcommand( no_run, doc, fail_fast, - quiet, allow_none, filter, shuffle, |