SOLR-3304 Removed a small bit of redundant testing that tests if [e]dismax defaults to schema defaultSearchField (already tested by TestExtendedDismaxParser). These specific tests will fail for another reason soon if left as is.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1350466 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
David Wayne Smiley 2012-06-15 05:42:51 +00:00
parent a440c1c1ad
commit 1ed4c4d40e
2 changed files with 0 additions and 17 deletions

View File

@ -232,12 +232,6 @@
</lst>
</requestHandler>
<requestHandler name="dismaxNoDefaults" class="solr.SearchHandler" >
<lst name="defaults">
<str name="defType">dismax</str>
</lst>
</requestHandler>
<requestHandler name="mock" class="org.apache.solr.core.MockQuerySenderListenerReqHandler"/>
<requestHandler name="/admin/" class="org.apache.solr.handler.admin.AdminHandlers" />

View File

@ -195,15 +195,4 @@ public class DisMaxRequestHandlerTest extends SolrTestCaseJ4 {
}
@Test
public void testSimplestParams() throws Exception {
assertQ("match w/o only q param",
req("qt", "dismaxNoDefaults",
"q","guide")
,"//*[@numFound='2']"
);
}
}