unmute FieldStatsIntegrationIT.testGeoPointNotIndexed, fix already pushed
This commit is contained in:
parent
88c78833f0
commit
b006636aaf
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue