Skip to content

Commit ab44e4c

Browse files
committed
use assert in test scope
1 parent 4f3745f commit ab44e4c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test/java/de/tilman_neumann/jml/factor/FactorSieveDemo.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@
1313
*/
1414
package de.tilman_neumann.jml.factor;
1515

16+
import static org.junit.Assert.assertEquals;
17+
1618
import java.math.BigInteger;
1719

1820
import org.apache.logging.log4j.LogManager;
1921
import org.apache.logging.log4j.Logger;
2022

2123
import de.tilman_neumann.util.ConfigUtil;
22-
import de.tilman_neumann.util.Ensure;
2324
import de.tilman_neumann.util.SortedMultiset;
2425

2526
public class FactorSieveDemo {
@@ -41,7 +42,7 @@ public static void main(String[] args) {
4142
LOG.info(n + " = " + factors);
4243
if (n>1) {
4344
long test = FactorSieve.computeProduct(factors);
44-
Ensure.ensureEquals(n, test);
45+
assertEquals(n, test);
4546
}
4647
}
4748
}

0 commit comments

Comments
 (0)