From 0ceaf115892fb3efad875f8568c21fe744f9a4f9 Mon Sep 17 00:00:00 2001 From: Colin Goodheart-Smithe Date: Fri, 7 Sep 2018 10:31:09 +0100 Subject: [PATCH] Removes redundant test method in SQL tests --- .../execution/search/extractor/FieldHitExtractorTests.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/execution/search/extractor/FieldHitExtractorTests.java b/x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/execution/search/extractor/FieldHitExtractorTests.java index a9e1349e8316b..9aa0c9f7b36c2 100644 --- a/x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/execution/search/extractor/FieldHitExtractorTests.java +++ b/x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/execution/search/extractor/FieldHitExtractorTests.java @@ -52,11 +52,6 @@ protected FieldHitExtractor mutateInstance(FieldHitExtractor instance) throws IO return new FieldHitExtractor(instance.fieldName() + "mutated", null, true, instance.hitName()); } - @AwaitsFix(bugUrl = "implement after we're sure of the InnerHitExtractor's implementation") - public void testGetNested() throws IOException { - fail("implement after we're sure of the InnerHitExtractor's implementation"); - } - public void testGetDottedValueWithDocValues() { String grandparent = randomAlphaOfLength(5); String parent = randomAlphaOfLength(5);