Author: sebb
Date: Tue Feb 1 19:36:42 2011
New Revision: 1066170
URL: http://svn.apache.org/viewvc?rev=1066170&view=rev
Log:
Don't waste precious ; !
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=1066170&r1=1066169&r2=1066170&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
Tue Feb 1 19:36:42 2011
@@ -1084,7 +1084,7 @@ public class FastMathTest {
Assert.assertEquals(-3.13994498e38f, FastMath.scalb(-1.1e-7f,
151), 0F);
Assert.assertEquals(Float.NEGATIVE_INFINITY, FastMath.scalb(-1.1e-7f,
152), 0F);
Assert.assertEquals(Float.POSITIVE_INFINITY,
FastMath.scalb(3.4028235E38f, 2147483647), 0F);
- Assert.assertEquals(Float.NEGATIVE_INFINITY,
FastMath.scalb(-3.4028235E38f, 2147483647), 0F);;
+ Assert.assertEquals(Float.NEGATIVE_INFINITY,
FastMath.scalb(-3.4028235E38f, 2147483647), 0F);
}
private boolean compareClassMethods(Class<?> class1, Class<?> class2){