You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/01/21 05:38:46 UTC

svn commit: r1061630 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math/util/FastMathTest.java

Author: sebb
Date: Fri Jan 21 04:38:45 2011
New Revision: 1061630

URL: http://svn.apache.org/viewvc?rev=1061630&view=rev
Log:
Bugs have been fixed; fail in future

Modified:
    commons/proper/math/trunk/src/test/java/org/apache/commons/math/util/FastMathTest.java

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math/util/FastMathTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/util/FastMathTest.java?rev=1061630&r1=1061629&r2=1061630&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math/util/FastMathTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math/util/FastMathTest.java Fri Jan 21 04:38:45 2011
@@ -975,7 +975,7 @@ public class FastMathTest {
     }
 
     private static void reportError(String message) {
-        final boolean fatal = false; // TODO set true once all bugs have been fixed
+        final boolean fatal = true;
         if (fatal) {
             Assert.fail(message);
         } else {