Skip to content

Commit 4504025

Browse files
Fix code formatting in PowerOfFourTest
1 parent e15105b commit 4504025

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
import static org.junit.jupiter.api.Assertions.assertFalse;
44
import static org.junit.jupiter.api.Assertions.assertTrue;
5+
56
import org.junit.jupiter.api.Test;
67

78
class PowerOfFourTest {
8-
9+
910
@Test
1011
void testPowersOfFour() {
1112
assertTrue(PowerOfFour.isPowerOfFour(1));
@@ -15,7 +16,7 @@ void testPowersOfFour() {
1516
assertTrue(PowerOfFour.isPowerOfFour(256));
1617
assertTrue(PowerOfFour.isPowerOfFour(1024));
1718
}
18-
19+
1920
@Test
2021
void testNonPowersOfFour() {
2122
assertFalse(PowerOfFour.isPowerOfFour(2));
@@ -25,7 +26,7 @@ void testNonPowersOfFour() {
2526
assertFalse(PowerOfFour.isPowerOfFour(15));
2627
assertFalse(PowerOfFour.isPowerOfFour(32));
2728
}
28-
29+
2930
@Test
3031
void testEdgeCases() {
3132
assertFalse(PowerOfFour.isPowerOfFour(0));

0 commit comments

Comments
 (0)