Skip to content

Commit ecfbcf5

Browse files
committed
Fix
1 parent 41e9b63 commit ecfbcf5

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/test/java/com/thealgorithms/divideandconquer/TilingProblemTest.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ public class TilingProblemTest {
88

99
@Test
1010
public void testTilingSize2() {
11-
int[][] expected = {
12-
{1, 1},
13-
{1, 0}
14-
};
11+
int[][] expected = {{1, 1}, {1, 0}};
1512
int[][] result = TilingProblem.solveTiling(2, 1, 1);
1613
assertArrayEquals(expected, result);
1714
}

0 commit comments

Comments
 (0)