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:
parent
94f9b580a5
commit
8f6fd887f5
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue