From 8b1deee4baeea581d0813329b4e578129b2680e0 Mon Sep 17 00:00:00 2001 From: tiye Date: Thu, 8 Feb 2024 16:21:52 +0800 Subject: [PATCH] tag 0.0.14 --- Cargo.toml | 2 +- tests/list_tests.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a68eaa3..9c685da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "im_ternary_tree" -version = "0.0.13" +version = "0.0.14" edition = "2021" authors = ["jiyinyiyong "] license = "MIT" diff --git a/tests/list_tests.rs b/tests/list_tests.rs index e8222af..cb80295 100644 --- a/tests/list_tests.rs +++ b/tests/list_tests.rs @@ -283,7 +283,7 @@ fn force_balancing() -> Result<(), String> { // echo data.formatInline assert_eq!( data.format_inline(), - String::from("((((0 1 2) 3 (4 5 6)) 7 ((8 9 10) 11 (12 13 14))) 15 ((16 17 18) 19))") + String::from("((0 1 2) (((3 4 5) (6 7 8) (9 10 11)) ((12 13 14) (15 16 17))) (18 19))") // deeper in middle ); if let Err(msg) = data.force_inplace_balancing() { println!("[warning] {}", msg)