--- jsr166/src/test/tck/ConcurrentHashMapTest.java 2013/07/22 15:55:43 1.37 +++ jsr166/src/test/tck/ConcurrentHashMapTest.java 2013/09/24 17:03:14 1.38 @@ -160,10 +160,10 @@ public class ConcurrentHashMapTest exten * can be inserted and found. */ public void testMixedComparable() { - int size = 10000; + int size = 1200; // makes measured test run time -> 35ms ConcurrentHashMap map = new ConcurrentHashMap(); - Random rng = new Random(1370014958369218000L); + Random rng = new Random(); for (int i = 0; i < size; i++) { Object x; switch (rng.nextInt(4)) {