removed a spurious print statement

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@754750 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2009-03-15 21:03:39 +00:00
parent 94f9b580a5
commit 8f6fd887f5
1 changed files with 0 additions and 3 deletions

View File

@ -77,9 +77,6 @@ public class StepInterpolatorAbstractTest extends TestCase {
32 * (yP3h[i] - yM3h[i]) +
-168 * (yP2h[i] - yM2h[i]) +
672 * (yP1h[i] - yM1h[i])) / (840 * h);
if (Math.abs(approYDot - yDot[i]) >= threshold) {
System.out.println("gotcha!");
}
assertEquals(approYDot, yDot[i], threshold);
}