From ab75f4f031fbc3ecdf85915be385c4086f740443 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Tue, 22 Feb 2022 03:21:50 +0000 Subject: [PATCH] Reformat tests --- tests/recursive_bst.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/recursive_bst.rs b/tests/recursive_bst.rs index 09351ce..ff05ba3 100644 --- a/tests/recursive_bst.rs +++ b/tests/recursive_bst.rs @@ -624,7 +624,10 @@ fn successfully_get_level_order_vec() { bst.insert(16); bst.insert(25); - assert_eq!(bst.level_order_vec(), vec![&15, &10, &20, &8, &12, &16, &25]); + assert_eq!( + bst.level_order_vec(), + vec![&15, &10, &20, &8, &12, &16, &25] + ); } #[test] @@ -734,4 +737,4 @@ fn successfully_clone_into_another_bst() { actual_bst.clone_from(&expected_bst); assert_eq!(actual_bst, expected_bst); -} \ No newline at end of file +}