Skip to content

Commit

Permalink
tag 0.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Feb 8, 2024
1 parent def11d9 commit 8b1deee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "im_ternary_tree"
version = "0.0.13"
version = "0.0.14"
edition = "2021"
authors = ["jiyinyiyong <jiyinyiyong@gmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/list_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8b1deee

Please sign in to comment.