From d17b7c64c79b44d4962c9c50b943409bfa8d7697 Mon Sep 17 00:00:00 2001 From: Lucas Farias Date: Wed, 2 Jul 2025 17:13:28 -0300 Subject: [PATCH] Unnecessary formatting --- tools/ci/src/commands/test.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tools/ci/src/commands/test.rs b/tools/ci/src/commands/test.rs index 86057d9776..70c8142e81 100644 --- a/tools/ci/src/commands/test.rs +++ b/tools/ci/src/commands/test.rs @@ -13,8 +13,7 @@ impl Prepare for TestCommand { let jobs = args.build_jobs(); let test_threads = args.test_threads(); - vec![ - PreparedCommand::new::( + vec![PreparedCommand::new::( 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.", - ) - ] + )] } }