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:
Phil Steitz 2004-10-24 21:47:16 +00:00
parent 6303d4f979
commit 72857df1fe
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ import junit.framework.TestSuite;
/** /**
* Test cases for the TestStatistic class. * 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 { public final class SimpleRegressionTest extends TestCase {
@ -193,7 +193,7 @@ public final class SimpleRegressionTest extends TestCase {
public void testInference() throws Exception { public void testInference() throws Exception {
//---------- verified against R, version 1.8.1 ----- //---------- verified against R, version 1.8.1 -----
// infData // infData
regression = new SimpleRegression(); SimpleRegression regression = new SimpleRegression();
regression.addData(infData); regression.addData(infData);
assertEquals("slope std err", 0.011448491, assertEquals("slope std err", 0.011448491,
regression.getSlopeStdErr(), 1E-10); regression.getSlopeStdErr(), 1E-10);