Author: sebb
Date: Tue Feb 1 19:32:11 2011
New Revision: 1066166
URL: http://svn.apache.org/viewvc?rev=1066166&view=rev
Log:
Don't waste precious ; !
Modified:
commons/proper/math/branches/MATH_2_X/src/test/java/org/apache/commons/math/util/FastMathTest.java
Modified:
commons/proper/math/branches/MATH_2_X/src/test/java/org/apache/commons/math/util/FastMathTest.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/test/java/org/apache/commons/math/util/FastMathTest.java?rev=1066166&r1=1066165&r2=1066166&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_X/src/test/java/org/apache/commons/math/util/FastMathTest.java
(original)
+++
commons/proper/math/branches/MATH_2_X/src/test/java/org/apache/commons/math/util/FastMathTest.java
Tue Feb 1 19:32:11 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){