Skip to content

Commit dba445f

Browse files
Fix package declaration in PowerOfFourTest
1 parent b0264b8 commit dba445f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
package com.thealgorithms.bitmanipulation;
1+
package com.thealgorithms.maths;
2+
3+
import com.thealgorithms.maths.PowerOfFour;
24

35
import static org.junit.jupiter.api.Assertions.assertFalse;
46
import static org.junit.jupiter.api.Assertions.assertTrue;
@@ -34,3 +36,4 @@ void testEdgeCases() {
3436
assertFalse(PowerOfFour.isPowerOfFour(-4));
3537
}
3638
}
39+

0 commit comments

Comments
 (0)