LUCENE-2943: tone down test with multiplier a bit

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1075999 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2011-03-01 19:53:05 +00:00
parent a5a3afca64
commit 7e5d696d7d
1 changed files with 2 additions and 2 deletions

View File

@ -280,8 +280,8 @@ public abstract class CollationTestBase extends LuceneTestCase {
}
public void assertThreadSafe(final Analyzer analyzer) throws Exception {
int numTestPoints = 1000 * RANDOM_MULTIPLIER;
int numThreads = _TestUtil.nextInt(random, 4, 8);
int numTestPoints = 1000;
int numThreads = _TestUtil.nextInt(random, 3, 5);
final HashMap<String,BytesRef> map = new HashMap<String,BytesRef>();
BytesRef spare = new BytesRef();