Browse Source

mute GeoShapeGeoHashGridAggregatorTests#testGeoShapeBounds (#72873)

Ignacio Vera 4 years ago
parent
commit
15da180b0c

+ 7 - 0
x-pack/plugin/spatial/src/test/java/org/elasticsearch/xpack/spatial/search/aggregations/bucket/geogrid/GeoShapeGeoHashGridAggregatorTests.java

@@ -17,6 +17,8 @@ import org.elasticsearch.search.aggregations.bucket.geogrid.GeoHashGridAggregati
 import org.elasticsearch.search.aggregations.bucket.geogrid.InternalGeoHashGridBucket;
 import org.elasticsearch.xpack.spatial.util.GeoTestUtils;
 
+import java.io.IOException;
+
 import static org.elasticsearch.geometry.utils.Geohash.stringEncode;
 
 public class GeoShapeGeoHashGridAggregatorTests extends GeoShapeGeoGridTestCase<InternalGeoHashGridBucket> {
@@ -50,4 +52,9 @@ public class GeoShapeGeoHashGridAggregatorTests extends GeoShapeGeoGridTestCase<
     protected GeoGridAggregationBuilder createBuilder(String name) {
         return new GeoHashGridAggregationBuilder(name);
     }
+
+    @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/72872")
+    public void testGeoShapeBounds() throws IOException {
+        super.testGeoShapeBounds();
+    }
 }