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:06:35 UTC

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

Author: erick
Date: Fri Jan  2 20:06:34 2015
New Revision: 1649109

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

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/solr/   (props changed)
    lucene/dev/branches/branch_5x/solr/CHANGES.txt   (contents, props changed)
    lucene/dev/branches/branch_5x/solr/core/   (props changed)
    lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java

Modified: lucene/dev/branches/branch_5x/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/CHANGES.txt?rev=1649109&r1=1649108&r2=1649109&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/CHANGES.txt (original)
+++ lucene/dev/branches/branch_5x/solr/CHANGES.txt Fri Jan  2 20:06:34 2015
@@ -550,6 +550,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/branches/branch_5x/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java?rev=1649109&r1=1649108&r2=1649109&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java (original)
+++ lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java Fri Jan  2 20:06:34 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"));