Skip to content

Commit 706c96a

Browse files
committed
Correction
1 parent 1a2bd39 commit 706c96a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/java/basics/TreeOperationsTest.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ class TreeOperationsTest {
4040
/*
4141
root Node
4242
/ \
43-
Node DDD
43+
Node 3
4444
/ \
45-
Node CCC
45+
Node 4
4646
/ \
47-
AAA BBB
47+
5 3
4848
*/
4949
val treeInt = Node(Node(Node(Leaf(5), Leaf(3)), Leaf(4)), Leaf(3))
5050

@@ -172,4 +172,4 @@ class TreeOperationsTest {
172172
// assertTrue(n.left === tree1)
173173
// assertTrue(n.right === tree2)
174174
// }
175-
}
175+
}

0 commit comments

Comments
 (0)