You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2012/05/27 21:45:07 UTC

svn commit: r1343083 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/random/RandomDataTest.java

Author: psteitz
Date: Sun May 27 19:45:06 2012
New Revision: 1343083

URL: http://svn.apache.org/viewvc?rev=1343083&view=rev
Log:
Eliminated unused import and retry infrastructure (no longer used). JIRA: Math-598.

Modified:
    commons/proper/math/trunk/src/test/java/org/apache/commons/math3/random/RandomDataTest.java

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/random/RandomDataTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/random/RandomDataTest.java?rev=1343083&r1=1343082&r2=1343083&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math3/random/RandomDataTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math3/random/RandomDataTest.java Sun May 27 19:45:06 2012
@@ -21,9 +21,6 @@ import java.util.ArrayList;
 import java.util.HashSet;
 import java.util.List;
 
-
-import org.apache.commons.math3.Retry;
-import org.apache.commons.math3.RetryRunner;
 import org.apache.commons.math3.TestUtils;
 import org.apache.commons.math3.distribution.BetaDistribution;
 import org.apache.commons.math3.distribution.BinomialDistribution;
@@ -49,7 +46,6 @@ import org.apache.commons.math3.util.Fas
 import org.apache.commons.math3.exception.MathIllegalArgumentException;
 import org.junit.Assert;
 import org.junit.Test;
-import org.junit.runner.RunWith;
 
 /**
  * Test cases for the RandomData class.
@@ -58,7 +54,6 @@ import org.junit.runner.RunWith;
  *          2009) $
  */
 
-@RunWith(RetryRunner.class)
 public class RandomDataTest {
 
     public RandomDataTest() {