You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by td...@apache.org on 2010/09/02 06:34:02 UTC

svn commit: r991809 - /mahout/trunk/math/src/test/java/org/apache/mahout/math/jet/random/ExponentialTest.java

Author: tdunning
Date: Thu Sep  2 04:34:02 2010
New Revision: 991809

URL: http://svn.apache.org/viewvc?rev=991809&view=rev
Log:
MAHOUT-495 - Another name change missed in previous commit

Modified:
    mahout/trunk/math/src/test/java/org/apache/mahout/math/jet/random/ExponentialTest.java

Modified: mahout/trunk/math/src/test/java/org/apache/mahout/math/jet/random/ExponentialTest.java
URL: http://svn.apache.org/viewvc/mahout/trunk/math/src/test/java/org/apache/mahout/math/jet/random/ExponentialTest.java?rev=991809&r1=991808&r2=991809&view=diff
==============================================================================
--- mahout/trunk/math/src/test/java/org/apache/mahout/math/jet/random/ExponentialTest.java (original)
+++ mahout/trunk/math/src/test/java/org/apache/mahout/math/jet/random/ExponentialTest.java Thu Sep  2 04:34:02 2010
@@ -20,7 +20,6 @@ package org.apache.mahout.math.jet.rando
 import org.apache.commons.math.ConvergenceException;
 import org.apache.commons.math.FunctionEvaluationException;
 import org.apache.mahout.common.RandomUtils;
-import org.apache.mahout.math.jet.random.engine.MersenneTwister;
 import org.junit.Test;
 
 import java.util.Arrays;
@@ -32,7 +31,7 @@ import static org.junit.Assert.assertEqu
  * Created by IntelliJ IDEA. User: tdunning Date: Aug 31, 2010 Time: 7:14:19 PM To change this
  * template use File | Settings | File Templates.
  */
-public class ExponentialTest extends DistributionTest {
+public class ExponentialTest extends DistributionChecks {
   @Test
   public void testCdf() {
     Exponential dist = new Exponential(5.0, RandomUtils.getRandom());