From 26a5bcfa97bfa7f01e65d9928757aef034f91a7f Mon Sep 17 00:00:00 2001 From: Lucas Farias Date: Wed, 2 Jul 2025 17:14:02 -0300 Subject: [PATCH] Too much white space --- tools/ci/src/commands/test.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/ci/src/commands/test.rs b/tools/ci/src/commands/test.rs index 70c8142e81..a904e59c46 100644 --- a/tools/ci/src/commands/test.rs +++ b/tools/ci/src/commands/test.rs @@ -14,13 +14,13 @@ impl Prepare for TestCommand { let test_threads = args.test_threads(); vec![PreparedCommand::new::( - 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.", )] } }