Skip to content

Commit c3e2090

Browse files
committed
style: 이상하게 정렬된 것 변경
1 parent 3721c1d commit c3e2090

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

yoonexample/src/test/java/search/binarysearchtree/BinarySearchTreeNodeTest.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ class BinarySearchTreeNodeTest {
4747
int doubleSubTreeNodeData = 8;
4848

4949
BinarySearchTreeNode<Integer> bstRoot = new LinkedBinarySearchTreeNode<>(RootNodeData,
50-
(Comparator
51-
.comparingInt(o -> o)));
50+
(Comparator.comparingInt(o -> o)));
5251

5352
bstRoot.insert(doubleSubTreeNodeData);
5453
bstRoot.insert(1);
@@ -73,8 +72,7 @@ class BinarySearchTreeNodeTest {
7372
@DisplayName("이진_탐색_트리_제거_테스트2")
7473
void 이진_탐색_트리_제거_테스트2() {
7574
BinarySearchTreeNode<Integer> bstRoot = new LinkedBinarySearchTreeNode<>(5,
76-
(Comparator
77-
.comparingInt(o -> o)));
75+
(Comparator.comparingInt(o -> o)));
7876

7977
bstRoot.insert(8);
8078
bstRoot.insert(1);

0 commit comments

Comments
 (0)