From 0cb0e06920ba36ef640fef95fb7bbd2250d6f6aa Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Tue, 1 Feb 2011 19:32:11 +0000 Subject: [PATCH] Don't waste precious ; ! git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1066166 13f79535-47bb-0310-9956-ffa450edef68 --- src/test/java/org/apache/commons/math/util/FastMathTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/math/util/FastMathTest.java b/src/test/java/org/apache/commons/math/util/FastMathTest.java index cf185495e..7c708e20e 100644 --- a/src/test/java/org/apache/commons/math/util/FastMathTest.java +++ b/src/test/java/org/apache/commons/math/util/FastMathTest.java @@ -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){