Skip to content

Commit 8d33bc8

Browse files
committed
Fix checkstyle errors
1 parent fe3ac9a commit 8d33bc8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/test/java/com/thealgorithms/others/MiniMaxAlgorithmTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -258,12 +258,12 @@ void testSetScoresWithLargePowerOfTwo() {
258258
void testSetScoresValidEdgeCases() {
259259
// Test valid powers of 2 to ensure isPowerOfTwo returns true correctly
260260
int[][] validPowersOf2 = {
261-
new int[1], // 1 = 2^0
262-
new int[2], // 2 = 2^1
263-
new int[4], // 4 = 2^2
264-
new int[8], // 8 = 2^3
265-
new int[16], // 16 = 2^4
266-
new int[64] // 64 = 2^6
261+
new int[1], // 1 = 2^0
262+
new int[2], // 2 = 2^1
263+
new int[4], // 4 = 2^2
264+
new int[8], // 8 = 2^3
265+
new int[16], // 16 = 2^4
266+
new int[64] // 64 = 2^6
267267
};
268268

269269
int[] expectedHeights = {0, 1, 2, 3, 4, 6};

0 commit comments

Comments
 (0)