File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/test/java/com/thealgorithms/bitmanipulation Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments