Skip to content

Commit e96f922

Browse files
committed
Code formatting.
1 parent 4301b41 commit e96f922

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/test/java/g0501_0600/s0530_minimum_absolute_difference_in_bst/SolutionTest.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,14 @@
1111
class SolutionTest {
1212
@Test
1313
void getMinimumDifference() {
14-
TreeNode treeNode =
15-
TreeUtils.constructBinaryTree(Arrays.asList(4, 2, 6, 1, 3));
14+
TreeNode treeNode = TreeUtils.constructBinaryTree(Arrays.asList(4, 2, 6, 1, 3));
1615
assertThat(new Solution().getMinimumDifference(treeNode), equalTo(1));
1716
}
1817

1918
@Test
2019
void getMinimumDifference2() {
2120
TreeNode treeNode =
22-
TreeUtils.constructBinaryTree(
23-
Arrays.asList(1, 0, 48, null, null, 12, 49));
21+
TreeUtils.constructBinaryTree(Arrays.asList(1, 0, 48, null, null, 12, 49));
2422
assertThat(new Solution().getMinimumDifference(treeNode), equalTo(1));
2523
}
2624
}

0 commit comments

Comments
 (0)