Skip to content

Commit 8b1deee

Browse files
committed
tag 0.0.14
1 parent def11d9 commit 8b1deee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[package]
33
name = "im_ternary_tree"
4-
version = "0.0.13"
4+
version = "0.0.14"
55
edition = "2021"
66
authors = ["jiyinyiyong <[email protected]>"]
77
license = "MIT"

tests/list_tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ fn force_balancing() -> Result<(), String> {
283283
// echo data.formatInline
284284
assert_eq!(
285285
data.format_inline(),
286-
String::from("((((0 1 2) 3 (4 5 6)) 7 ((8 9 10) 11 (12 13 14))) 15 ((16 17 18) 19))")
286+
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
287287
);
288288
if let Err(msg) = data.force_inplace_balancing() {
289289
println!("[warning] {}", msg)

0 commit comments

Comments
 (0)