Test: wrong index and query in testConstantScoreQuery

This commit is contained in:
Boaz Leskes 2015-11-15 20:34:26 +01:00
parent 89172dfb02
commit 18a75fb30c
1 changed files with 2 additions and 2 deletions

View File

@ -243,7 +243,7 @@ public class SearchQueryIT extends ESIntegTestCase {
int num = scaledRandomIntBetween(100, 200);
IndexRequestBuilder[] builders = new IndexRequestBuilder[num];
for (int i = 0; i < builders.length; i++) {
builders[i] = client().prepareIndex("test", "type", "" + i).setSource("f", English.intToEnglish(i));
builders[i] = client().prepareIndex("test_1", "type", "" + i).setSource("f", English.intToEnglish(i));
}
createIndex("test_1");
indexRandom(true, builders);
@ -251,7 +251,7 @@ public class SearchQueryIT extends ESIntegTestCase {
int queryRounds = scaledRandomIntBetween(10, 20);
for (int i = 0; i < queryRounds; i++) {
MatchQueryBuilder matchQuery = matchQuery("f", English.intToEnglish(between(0, num)));
searchResponse = client().prepareSearch("test_1").setQuery(matchQuery).setSize(num).get();
searchResponse = client().prepareSearch("test_1").setQuery(constantScoreQuery(matchQuery)).setSize(num).get();
long totalHits = searchResponse.getHits().totalHits();
SearchHits hits = searchResponse.getHits();
for (SearchHit searchHit : hits) {