From 9106355fb8dfc4262695f9d36e47e89d9f341217 Mon Sep 17 00:00:00 2001 From: John Hughes Date: Thu, 1 Dec 2022 18:54:26 +0100 Subject: [PATCH] Test fix, format --- src/array/fmt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/array/fmt.rs b/src/array/fmt.rs index e5afa1089e1..47b72fb9cac 100644 --- a/src/array/fmt.rs +++ b/src/array/fmt.rs @@ -88,7 +88,7 @@ pub fn get_value_display<'a, F: Write + 'a>( Union => Box::new(move |f, index| { super::union::fmt::write_value(array.as_any().downcast_ref().unwrap(), index, null, f) }), - Map => Box::new(move |f, index|{ + Map => Box::new(move |f, index| { super::map::fmt::write_value(array.as_any().downcast_ref().unwrap(), index, null, f) }), Dictionary(key_type) => match_integer_type!(key_type, |$T| {