Unnecessary formatting

This commit is contained in:
Lucas Farias 2025-07-02 17:13:28 -03:00
parent e740b00308
commit d17b7c64c7

View File

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