Remove old norelease comment, the test is okay as it is

This commit is contained in:
Christoph Büscher 2017-09-01 18:25:27 +02:00
parent 4157eead22
commit c2853c8281
1 changed files with 1 additions and 5 deletions

View File

@ -27,12 +27,8 @@ public class FilterTests extends BaseAggregationTestCase<FilterAggregationBuilde
@Override
protected FilterAggregationBuilder createTestAggregatorBuilder() {
FilterAggregationBuilder factory = new FilterAggregationBuilder(randomAlphaOfLengthBetween(1, 20),
return new FilterAggregationBuilder(randomAlphaOfLengthBetween(1, 20),
QueryBuilders.termQuery(randomAlphaOfLengthBetween(5, 20), randomAlphaOfLengthBetween(5, 20)));
// NORELEASE make RandomQueryBuilder work outside of the
// AbstractQueryTestCase
// builder.query(RandomQueryBuilder.createQuery(getRandom()));
return factory;
}
}