From 565af8237b17c4c658f3b965c0a28b414b0de9d3 Mon Sep 17 00:00:00 2001 From: Eli Youngs Date: Sun, 6 Feb 2022 23:57:54 -0800 Subject: [PATCH] Fix formatting --- tests/by-util/test_printf.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/by-util/test_printf.rs b/tests/by-util/test_printf.rs index 4f1b52b32..cb7126b9b 100644 --- a/tests/by-util/test_printf.rs +++ b/tests/by-util/test_printf.rs @@ -480,10 +480,7 @@ fn sub_general_float() { #[test] fn sub_general_truncate_to_integer() { - new_ucmd!() - .args(&["%g", "1.0"]) - .succeeds() - .stdout_only("1"); + new_ucmd!().args(&["%g", "1.0"]).succeeds().stdout_only("1"); } #[test]