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
The following commit(s) were added to refs/heads/master by this push: new 49dadff Increase test tolerance 49dadff is described below commit 49dadff52a441df3a1d6d99e6a8b01a2513b299e Author: Alex Herbert <aherb...@apache.org> AuthorDate: Sun Dec 24 09:09:30 2023 +0000 Increase test tolerance --- .../java/org/apache/commons/statistics/descriptive/LongSumTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons-statistics-descriptive/src/test/java/org/apache/commons/statistics/descriptive/LongSumTest.java b/commons-statistics-descriptive/src/test/java/org/apache/commons/statistics/descriptive/LongSumTest.java index 858b6d8..6b02e5f 100644 --- a/commons-statistics-descriptive/src/test/java/org/apache/commons/statistics/descriptive/LongSumTest.java +++ b/commons-statistics-descriptive/src/test/java/org/apache/commons/statistics/descriptive/LongSumTest.java @@ -56,7 +56,7 @@ final class LongSumTest extends BaseLongStatisticTest<LongSum> { // Floating-point sum may be inexact. // Currently the double sum matches on the standard test data. // It fails on large random data added in streamTestData(). - return DoubleTolerances.ulps(5); + return DoubleTolerances.ulps(20); } @Override