Fixed test compile bug introduced in last commit.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141479 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6303d4f979
commit
72857df1fe
|
@ -23,7 +23,7 @@ import junit.framework.TestSuite;
|
|||
/**
|
||||
* Test cases for the TestStatistic class.
|
||||
*
|
||||
* @version $Revision: 1.2 $ $Date: 2004/10/24 06:30:01 $
|
||||
* @version $Revision: 1.3 $ $Date: 2004/10/24 21:47:16 $
|
||||
*/
|
||||
|
||||
public final class SimpleRegressionTest extends TestCase {
|
||||
|
@ -193,7 +193,7 @@ public final class SimpleRegressionTest extends TestCase {
|
|||
public void testInference() throws Exception {
|
||||
//---------- verified against R, version 1.8.1 -----
|
||||
// infData
|
||||
regression = new SimpleRegression();
|
||||
SimpleRegression regression = new SimpleRegression();
|
||||
regression.addData(infData);
|
||||
assertEquals("slope std err", 0.011448491,
|
||||
regression.getSlopeStdErr(), 1E-10);
|
||||
|
|
Loading…
Reference in New Issue