Skip to content

Commit e746cca

Browse files
committed
refactor: move to maths package
1 parent 0a54ce7 commit e746cca

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/main/java/com/thealgorithms/maths/Prime/EulerPseudoprime.java renamed to src/main/java/com/thealgorithms/maths/EulerPseudoprime.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.maths.Prime;
1+
package com.thealgorithms.maths;
22

33
import java.math.BigInteger;
44
import java.util.Random;

src/test/java/com/thealgorithms/maths/prime/EulerPseudoprimeTest.java renamed to src/test/java/com/thealgorithms/maths/EulerPseudoprimeTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
package com.thealgorithms.maths.prime;
1+
package com.thealgorithms.maths;
22

33
import static org.junit.jupiter.api.Assertions.assertFalse;
44
import static org.junit.jupiter.api.Assertions.assertThrows;
55
import static org.junit.jupiter.api.Assertions.assertTrue;
66
import static org.mockito.ArgumentMatchers.any;
77

8-
import com.thealgorithms.maths.Prime.EulerPseudoprime;
98
import java.math.BigInteger;
109
import org.junit.jupiter.api.Test;
1110
import org.mockito.MockedStatic;

0 commit comments

Comments
 (0)