Skip to content

Commit 06f9eca

Browse files
committed
Fix
1 parent 110da64 commit 06f9eca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/thealgorithms/bitmanipulation/HigherLowerPowerOfTwoTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public void testNextLowerPowerOfTwo() {
2020
assertEquals(16, HigherLowerPowerOfTwo.nextLowerPowerOfTwo(19)); // next lower power of two is 16
2121
assertEquals(1, HigherLowerPowerOfTwo.nextLowerPowerOfTwo(1)); // next lower power of two is 1
2222
assertEquals(8, HigherLowerPowerOfTwo.nextLowerPowerOfTwo(9)); // next lower power of two is 8
23-
assertEquals(8, HigherLowerPowerOfTwo.nextLowerPowerOfTwo(15));// next lower power of two is 8
23+
assertEquals(8, HigherLowerPowerOfTwo.nextLowerPowerOfTwo(15)); // next lower power of two is 8
2424
assertEquals(8, HigherLowerPowerOfTwo.nextLowerPowerOfTwo(8)); // next lower power of two is 8
2525
}
2626
}

0 commit comments

Comments
 (0)