You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2015/04/26 21:13:09 UTC

[2/2] [math] Remove spurios change.

Remove spurios change.


Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/b494caa0
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/b494caa0
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/b494caa0

Branch: refs/heads/master
Commit: b494caa01985c623601735f1bc10871cfb8aa048
Parents: a6abb8b
Author: Thomas Neidhart <th...@gmail.com>
Authored: Sun Apr 26 21:12:55 2015 +0200
Committer: Thomas Neidhart <th...@gmail.com>
Committed: Sun Apr 26 21:12:55 2015 +0200

----------------------------------------------------------------------
 .../commons/math4/stat/inference/KolmogorovSmirnovTestTest.java   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/b494caa0/src/test/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTestTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTestTest.java b/src/test/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTestTest.java
index 4c8a38b..0a73139 100644
--- a/src/test/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTestTest.java
+++ b/src/test/java/org/apache/commons/math4/stat/inference/KolmogorovSmirnovTestTest.java
@@ -261,7 +261,7 @@ public class KolmogorovSmirnovTestTest {
      * Verify that large sample method is selected for sample product > Integer.MAX_VALUE
      * (integer overflow in sample product)
      */
-    @Test//(timeout=5000)
+    @Test(timeout=5000)
     public void testTwoSampleProductSizeOverflow() {
         final int n = 50000;
         Assert.assertTrue(n * n < 0);
@@ -271,7 +271,6 @@ public class KolmogorovSmirnovTestTest {
         Assert.assertFalse(Double.isNaN(test.kolmogorovSmirnovTest(x, y)));
     }
 
-
     /**
      * Verifies that Monte Carlo simulation gives results close to exact p values. This test is a
      * little long-running (more than two minutes on a fast machine), so is disabled by default.