From da36d9205620fa85cae27c5d209a47bc471df438 Mon Sep 17 00:00:00 2001 From: Yonik Seeley Date: Wed, 29 Apr 2015 16:35:00 +0000 Subject: [PATCH] tests: fix intermittent failure in TestJsonFacets.testComplex git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1676786 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/test/org/apache/solr/search/facet/TestJsonFacets.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacets.java b/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacets.java index 6afd7020bcd..71eb5c8424c 100644 --- a/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacets.java +++ b/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacets.java @@ -91,7 +91,7 @@ public class TestJsonFacets extends SolrTestCaseHS { 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];