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 +}