You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2020/07/14 14:42:28 UTC

[lucene-solr] branch reference_impl updated: #198 - Knock down this test.

This is an automated email from the ASF dual-hosted git repository.

markrmiller pushed a commit to branch reference_impl
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/reference_impl by this push:
     new e8ec152  #198 - Knock down this test.
e8ec152 is described below

commit e8ec152ef629eef837c4790b201bd5b0a84b2021
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Tue Jul 14 09:42:10 2020 -0500

    #198 - Knock down this test.
---
 .../src/test/org/apache/solr/handler/component/TermsComponentTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/core/src/test/org/apache/solr/handler/component/TermsComponentTest.java b/solr/core/src/test/org/apache/solr/handler/component/TermsComponentTest.java
index 660498a..7103659 100644
--- a/solr/core/src/test/org/apache/solr/handler/component/TermsComponentTest.java
+++ b/solr/core/src/test/org/apache/solr/handler/component/TermsComponentTest.java
@@ -484,7 +484,7 @@ public class TermsComponentTest extends SolrTestCaseJ4 {
 
   @Test
   public void testPointField() throws Exception {
-    int nvals = 10000; int maxval = 1000000;
+    int nvals = TEST_NIGHTLY ? 10000 : 1000; int maxval = TEST_NIGHTLY ? 1000000 : 10000;
     // int nvals = 5; int maxval = 2;
     final int vals[] = new int[nvals];
     for (int i=0; i<nvals; i++) {