You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2023/02/16 14:46:27 UTC

[commons-statistics] 04/05: Add back assertion removed for debugging implementations

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 d98930215d6c4e4a9c3de8face099bf9cc4a91c1
Author: aherbert <ah...@apache.org>
AuthorDate: Thu Feb 16 13:52:02 2023 +0000

    Add back assertion removed for debugging implementations
---
 .../commons/statistics/inference/KolmogorovSmirnovDistributionTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commons-statistics-inference/src/test/java/org/apache/commons/statistics/inference/KolmogorovSmirnovDistributionTest.java b/commons-statistics-inference/src/test/java/org/apache/commons/statistics/inference/KolmogorovSmirnovDistributionTest.java
index d0685f4..03a5a84 100644
--- a/commons-statistics-inference/src/test/java/org/apache/commons/statistics/inference/KolmogorovSmirnovDistributionTest.java
+++ b/commons-statistics-inference/src/test/java/org/apache/commons/statistics/inference/KolmogorovSmirnovDistributionTest.java
@@ -495,7 +495,7 @@ class KolmogorovSmirnovDistributionTest {
         //final double p1 = onesf(x, n, DEFAULT_POWER);
         //final double p1 = onesf(x, n, DD::powScaled);
         //final double p1 = onesf(x, n, DEFAULT_MC);
-        //TestUtils.assertProbability(p, p1, eps, "sf");
+        TestUtils.assertProbability(p, p1, eps, "sf");
     }
 
     /**