Reduced the number of combinations being tested here, which was overkill

This commit is contained in:
Mark DePristo 2011-09-01 10:42:43 -04:00
parent ac49b8d26b
commit 1aa4b12ff0
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ public class CachingIndexedFastaSequenceFileUnitTest extends BaseTest {
private static final int STEP_SIZE = 1;
//private static final List<Integer> QUERY_SIZES = Arrays.asList(1);
private static final List<Integer> QUERY_SIZES = Arrays.asList(1, 10, 100, 1000);
private static final List<Integer> CACHE_SIZES = Arrays.asList(-1, 10, 1000);
private static final List<Integer> QUERY_SIZES = Arrays.asList(1, 10, 100);
private static final List<Integer> CACHE_SIZES = Arrays.asList(-1, 1000);
@DataProvider(name = "fastas")
public Object[][] createData1() {