Mute NodeSubclassTests.testReplaceChildren

Signed-off-by: Mark Vieira <portugee@gmail.com>
This commit is contained in:
Mark Vieira 2020-03-02 09:15:39 -08:00
parent 5a293b29a1
commit 5b5e92c71d
No known key found for this signature in database
GPG Key ID: CA947EF7E6D4B105
1 changed files with 2 additions and 1 deletions

View File

@ -88,7 +88,7 @@ import static org.mockito.Mockito.mock;
* </ul> * </ul>
*/ */
public class NodeSubclassTests<T extends B, B extends Node<B>> extends ESTestCase { public class NodeSubclassTests<T extends B, B extends Node<B>> extends ESTestCase {
private static final List<Class<?>> CLASSES_WITH_MIN_TWO_CHILDREN = asList(In.class, InPipe.class); private static final List<Class<?>> CLASSES_WITH_MIN_TWO_CHILDREN = asList(In.class, InPipe.class);
private final Class<T> subclass; private final Class<T> subclass;
@ -158,6 +158,7 @@ public class NodeSubclassTests<T extends B, B extends Node<B>> extends ESTestCas
/** /**
* Test {@link Node#replaceChildren} implementation on {@link #subclass}. * Test {@link Node#replaceChildren} implementation on {@link #subclass}.
*/ */
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/53011")
public void testReplaceChildren() throws Exception { public void testReplaceChildren() throws Exception {
Constructor<T> ctor = longestCtor(subclass); Constructor<T> ctor = longestCtor(subclass);
Object[] nodeCtorArgs = ctorArgs(ctor); Object[] nodeCtorArgs = ctorArgs(ctor);