From 52a11d8237a631e92c86a80f4e24f6c7a0a8e091 Mon Sep 17 00:00:00 2001 From: chansuke Date: Mon, 10 Sep 2018 21:31:38 +0900 Subject: [PATCH] Format component size_of_test --- components/size_of_test/lib.rs | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/components/size_of_test/lib.rs b/components/size_of_test/lib.rs index fdd2cd62ec9..f190c24599d 100644 --- a/components/size_of_test/lib.rs +++ b/components/size_of_test/lib.rs @@ -13,16 +13,22 @@ macro_rules! size_of_test { panic!( "Your changes have decreased the stack size of {} from {} to {}. \ Good work! Please update the expected size in {}.", - stringify!($t), old, new, file!() + stringify!($t), + old, + new, + file!() ) } else if new > old { panic!( "Your changes have increased the stack size of {} from {} to {}. \ Please consider choosing a design which avoids this increase. \ If you feel that the increase is necessary, update the size in {}.", - stringify!($t), old, new, file!() + stringify!($t), + old, + new, + file!() ) } } - } + }; }