From 6791a405b4b861ba1f54afab3f4022c4441cbeb1 Mon Sep 17 00:00:00 2001 From: Erick Erickson Date: Fri, 2 Jan 2015 20:02:45 +0000 Subject: [PATCH] SOLR-6906: Fix typo bug in DistributedDebugComponentTest.testCompareWithNonDistributedRequest git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1649106 13f79535-47bb-0310-9956-ffa450edef68 --- solr/CHANGES.txt | 3 +++ .../solr/handler/component/DistributedDebugComponentTest.java | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index 66500e47373..7c19304d40d 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -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 diff --git a/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java b/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java index 4a4b6bcf612..de75b5a3fe7 100644 --- a/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java +++ b/solr/core/src/test/org/apache/solr/handler/component/DistributedDebugComponentTest.java @@ -364,8 +364,8 @@ public class DistributedDebugComponentTest extends SolrJettyTestBase { 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"));