SOLR-10845: fix QueryEqualityTest unknown schema field for graphTerms query

This commit is contained in:
yonik 2017-08-01 13:48:45 -04:00
parent de5ae4096d
commit d696b5986b
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ public class QueryEqualityTest extends SolrTestCaseJ4 {
public void testGraphTermsQuery() throws Exception {
SolrQueryRequest req = req("q", "*:*");
try {
assertQueryEquals("graphTerms", req, "{!graphTerms f=field1 maxDocFreq=1000}term1,term2");
assertQueryEquals("graphTerms", req, "{!graphTerms f=field1_s maxDocFreq=1000}term1,term2");
} finally {
req.close();
}