LUCENE-2705: drop number of simultaneous threads from 100 to 10

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1023006 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2010-10-15 16:34:01 +00:00
parent 612a6ceaac
commit c776a87802
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ public class TestThreadSafe extends LuceneTestCase {
int num = 100 * RANDOM_MULTIPLIER;
for (int i = 0; i < num; i++) {
ir1 = IndexReader.open(dir1, false);
doTest(10,100);
doTest(10,10);
ir1.close();
}
dir1.close();