Changing getValue to getResult.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@140980 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fe37437c08
commit
31166f2bbb
|
@ -80,11 +80,11 @@ public abstract class StorelessUnivariateStatisticAbstractTest
|
|||
statistic.increment(testArray[i]);
|
||||
}
|
||||
|
||||
assertEquals(expectedValue(), statistic.getValue(), getTolerance());
|
||||
assertEquals(expectedValue(), statistic.getResult(), getTolerance());
|
||||
|
||||
statistic.clear();
|
||||
|
||||
assertTrue(Double.isNaN(statistic.getValue()));
|
||||
assertTrue(Double.isNaN(statistic.getResult()));
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue