Too much white space

This commit is contained in:
Lucas Farias 2025-07-02 17:14:02 -03:00
parent d17b7c64c7
commit 26a5bcfa97

View File

@ -14,13 +14,13 @@ impl Prepare for TestCommand {
let test_threads = args.test_threads();
vec![PreparedCommand::new::<Self>(
cmd!(
sh,
// `--benches` runs each benchmark once in order to verify that they behave
// correctly and do not panic.
"cargo test --workspace --lib --bins --tests --benches {no_fail_fast...} {jobs...} -- {test_threads...}"
),
"Please fix failing tests in output above.",
cmd!(
sh,
// `--benches` runs each benchmark once in order to verify that they behave
// correctly and do not panic.
"cargo test --workspace --lib --bins --tests --benches {no_fail_fast...} {jobs...} -- {test_threads...}"
),
"Please fix failing tests in output above.",
)]
}
}