You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by yo...@apache.org on 2015/04/29 18:35:00 UTC

svn commit: r1676786 - /lucene/dev/trunk/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacets.java

Author: yonik
Date: Wed Apr 29 16:35:00 2015
New Revision: 1676786

URL: http://svn.apache.org/r1676786
Log:
tests: fix intermittent failure in TestJsonFacets.testComplex

Modified:
    lucene/dev/trunk/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacets.java

Modified: lucene/dev/trunk/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacets.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacets.java?rev=1676786&r1=1676785&r2=1676786&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacets.java (original)
+++ lucene/dev/trunk/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacets.java Wed Apr 29 16:35:00 2015
@@ -91,7 +91,7 @@ public class TestJsonFacets extends Solr
     String[] makes = {"honda", "toyota", "ford", null};
     Double[] prices = {10000.0, 30000.0, 50000.0, 0.0, null};
     String[] honda_models = {"accord", "civic", "fit", "pilot", null};  // make sure this is alphabetized to match tiebreaks in index
-    String[] other_models = {"a", "b", "c", "x", "y", "z", null};
+    String[] other_models = {"z1", "z2", "z3", "z4", "z5", "z6", null};
 
     int nHonda = 0;
     final int[] honda_model_counts = new int[honda_models.length];