Reduced the number of combinations being tested here, which was overkill
This commit is contained in:
parent
ac49b8d26b
commit
1aa4b12ff0
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue