unmute FieldStatsIntegrationIT.testGeoPointNotIndexed, fix already pushed

This commit is contained in:
Nicholas Knize 2017-01-19 08:44:00 -06:00
parent 88c78833f0
commit b006636aaf
1 changed files with 0 additions and 2 deletions

View File

@ -539,7 +539,6 @@ public class FieldStatsIntegrationIT extends ESIntegTestCase {
assertEquals(oldHitCount, indexStats.getHitCount());
}
@AwaitsFix(bugUrl = "fix in work, mute for now")
public void testGeoPointNotIndexed() throws Exception {
assertAcked(prepareCreate("test").addMapping("test", "value", "type=long", "location", "type=geo_point,index=false"));
ensureGreen("test");
@ -556,7 +555,6 @@ public class FieldStatsIntegrationIT extends ESIntegTestCase {
assertThat(response.getAllFieldStats().get("location").getMaxValue(), equalTo(null));
assertThat(response.getAllFieldStats().get("location").isAggregatable(), equalTo(true));
assertThat(response.getAllFieldStats().get("location").isSearchable(), equalTo(false));
}
private void indexRange(String index, long from, long to) throws Exception {