From 68bfd52445319b3b8369bb979930afd4f2eb8e0d Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 11 Mar 2023 14:42:01 -0800 Subject: [PATCH] Format test cfg attributes with rustfmt --- tests/test_size.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_size.rs b/tests/test_size.rs index 86918bba..46e58db4 100644 --- a/tests/test_size.rs +++ b/tests/test_size.rs @@ -24,7 +24,10 @@ fn test_proc_macro2_fallback_span_size_with_locations() { } #[rustversion::attr(before(1.32), ignore)] -#[rustversion::attr(since(1.32), cfg_attr(not(all(wrap_proc_macro, not(span_locations))), ignore))] +#[rustversion::attr( + since(1.32), + cfg_attr(not(all(wrap_proc_macro, not(span_locations))), ignore) +)] #[test] fn test_proc_macro2_wrapper_span_size_without_locations() { assert_eq!(mem::size_of::(), 4);