From 12924f2f694c6fbb98be6f4b216f0f9ffe70925c Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Fri, 16 Apr 2021 22:24:25 -0400 Subject: [PATCH] Fix build? --- tests/happy_paths.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/happy_paths.rs b/tests/happy_paths.rs index 8e6df64..8af1a97 100644 --- a/tests/happy_paths.rs +++ b/tests/happy_paths.rs @@ -199,7 +199,7 @@ fn parse_full_json_example() { ]), ); - assert!(result.is_ok(), format!("{:#?}", result)); + assert!(result.is_ok(), "{:#?}", result); let outer_array: Vec = result.unwrap().unwrap(); let result_map: JSONMap = outer_array[0].clone().unwrap();