This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-statistics.git
commit cb27bbefed621a9109cea37d40b32c1f493b90a7 Author: Alex Herbert <aherb...@apache.org> AuthorDate: Wed Oct 27 12:32:20 2021 +0100 Remove spurious @Test annotation --- .../apache/commons/statistics/distribution/ExtendedPrecisionTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/commons-statistics-distribution/src/test/java/org/apache/commons/statistics/distribution/ExtendedPrecisionTest.java b/commons-statistics-distribution/src/test/java/org/apache/commons/statistics/distribution/ExtendedPrecisionTest.java index a864f42..3c6398a 100644 --- a/commons-statistics-distribution/src/test/java/org/apache/commons/statistics/distribution/ExtendedPrecisionTest.java +++ b/commons-statistics-distribution/src/test/java/org/apache/commons/statistics/distribution/ExtendedPrecisionTest.java @@ -149,7 +149,6 @@ class ExtendedPrecisionTest { assertSqrt2xxStandardPrecision(RMS2, 1.3, 0.6); } - @Test private static void assertSqrt2xxStandardPrecision(RMS rms, double maxError, double rmsError) { Assertions.assertTrue(rms.getMax() < maxError, () -> "max error: " + rms.getMax()); Assertions.assertTrue(rms.getRMS() < rmsError, () -> "rms error: " + rms.getRMS());