wrap line at 140chars

This commit is contained in:
Simon Willnauer 2016-03-23 13:31:50 +01:00
parent ececff357b
commit 4826782b37
1 changed files with 2 additions and 1 deletions

View File

@ -439,7 +439,8 @@ public class FiltersIT extends ESIntegTestCase {
SearchResponse searchResponse = client().prepareSearch("empty_bucket_idx")
.setQuery(matchAllQuery())
.addAggregation(histogram("histo").field("value").interval(1L).minDocCount(0)
.subAggregation(filters("filters", new KeyedFilter("foo", matchAllQuery())).otherBucket(true).otherBucketKey("bar")))
.subAggregation(filters("filters", new KeyedFilter("foo", matchAllQuery()))
.otherBucket(true).otherBucketKey("bar")))
.execute().actionGet();
assertThat(searchResponse.getHits().getTotalHits(), equalTo(2L));