You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by er...@apache.org on 2015/01/02 21:02:45 UTC

svn commit: r1649106 - in /lucene/dev/trunk/solr: CHANGES.txt core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java

Author: erick
Date: Fri Jan  2 20:02:45 2015
New Revision: 1649106

URL: http://svn.apache.org/r1649106
Log:
SOLR-6906: Fix typo bug in DistributedDebugComponentTest.testCompareWithNonDistributedRequest

Modified:
    lucene/dev/trunk/solr/CHANGES.txt
    lucene/dev/trunk/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java

Modified: lucene/dev/trunk/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/CHANGES.txt?rev=1649106&r1=1649105&r2=1649106&view=diff
==============================================================================
--- lucene/dev/trunk/solr/CHANGES.txt (original)
+++ lucene/dev/trunk/solr/CHANGES.txt Fri Jan  2 20:02:45 2015
@@ -599,6 +599,9 @@ Other Changes
 * SOLR-6483: Refactor some methods in MiniSolrCloudCluster tests (Steve Davids via
   Erick Erickson)
 
+* SOLR-6906: Fix typo bug in DistributedDebugComponentTest.testCompareWithNonDistributedRequest
+  (Ramkumar Aiyenga via Erick Erickson)
+
 ==================  4.10.3 ==================
 
 Bug Fixes

Modified: lucene/dev/trunk/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java?rev=1649106&r1=1649105&r2=1649106&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java (original)
+++ lucene/dev/trunk/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java Fri Jan  2 20:02:45 2015
@@ -364,8 +364,8 @@ public class DistributedDebugComponentTe
     assertSectionEquals(distribResponse, nonDistribResponse, "parsedquery");
     assertSectionEquals(distribResponse, nonDistribResponse, "parsedquery_toString");
     assertSectionEquals(distribResponse, nonDistribResponse, "QParser");
-    assertSectionEquals(distribResponse, nonDistribResponse, "filter_qieries");
-    assertSectionEquals(distribResponse, nonDistribResponse, "parsed_filter_qieries");
+    assertSectionEquals(distribResponse, nonDistribResponse, "filter_queries");
+    assertSectionEquals(distribResponse, nonDistribResponse, "parsed_filter_queries");
     
     // timing should have the same sections:
     assertSameKeys((NamedList<?>)nonDistribResponse.getDebugMap().get("timing"), (NamedList<?>)distribResponse.getDebugMap().get("timing"));