JAVA-29378 reduce loop size from 10M to 1M (#15452)
This commit is contained in:
parent
63312fbcf9
commit
d49c309ff4
|
@ -9,7 +9,7 @@ import org.slf4j.LoggerFactory;
|
|||
public class CombiningUnitTest {
|
||||
private static final Logger LOG = LoggerFactory.getLogger(CombiningUnitTest.class);
|
||||
|
||||
public static final int TOP = 10000000;
|
||||
public static final int TOP = 1000000;
|
||||
public static final double FRACTION = 0.1;
|
||||
|
||||
@Test
|
||||
|
|
|
@ -12,7 +12,7 @@ import org.slf4j.LoggerFactory;
|
|||
public class IfUnitTest {
|
||||
private static final Logger LOG = LoggerFactory.getLogger(IfUnitTest.class);
|
||||
|
||||
public static final int TOP = 10000000;
|
||||
public static final int TOP = 1000000;
|
||||
|
||||
@Test
|
||||
public void majorBranchSorted() {
|
||||
|
|
|
@ -11,7 +11,7 @@ import org.slf4j.LoggerFactory;
|
|||
|
||||
public class SortingUnitTest {
|
||||
private static final Logger LOG = LoggerFactory.getLogger(SortingUnitTest.class);
|
||||
public static final int BIG = 10000000;
|
||||
public static final int BIG = 1000000;
|
||||
public static final int SMALL = 100000;
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue