Skip to content

Commit d6c124b

Browse files
fix: Format code to comply with clang-format and checkstyle requirements
1 parent baac588 commit d6c124b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/thealgorithms/datastructures/trees/CentroidDecompositionTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,14 @@ void testPathGraph() {
158158
@Test
159159
void testInvalidEmptyTree() {
160160
assertThrows(IllegalArgumentException.class, () -> {
161-
CentroidDecomposition.buildFromEdges(0, new int[][]{});
161+
CentroidDecomposition.buildFromEdges(0, new int[][] {});
162162
});
163163
}
164164

165165
@Test
166166
void testInvalidNegativeNodes() {
167167
assertThrows(IllegalArgumentException.class, () -> {
168-
CentroidDecomposition.buildFromEdges(-1, new int[][]{});
168+
CentroidDecomposition.buildFromEdges(-1, new int[][] {});
169169
});
170170
}
171171

0 commit comments

Comments
 (0)