Browse Source

Mute GeoDistanceQueryBuilderGeoShapeTests#testToQuery (#88714)

relates https://github.com/elastic/elasticsearch/issues/88712
Ignacio Vera 3 years ago
parent
commit
03eb17089e

+ 5 - 0
x-pack/plugin/spatial/src/test/java/org/elasticsearch/xpack/spatial/index/query/GeoDistanceQueryBuilderGeoShapeTests.java

@@ -63,4 +63,9 @@ public class GeoDistanceQueryBuilderGeoShapeTests extends GeoDistanceQueryBuilde
         assertEquals(GeoShapeWithDocValuesFieldMapper.GeoShapeWithDocValuesFieldType.class, fieldType.getClass());
         assertEquals(IndexOrDocValuesQuery.class, query.getClass());
     }
+
+    @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/88712")
+    public void testToQuery() throws IOException {
+        super.testToQuery();
+    }
 }