(cherry picked from commit c741e49d9f5e7b78c1a78e1af97eb19354fe6864)
This commit is contained in:
parent
d3a8ac66c6
commit
9ad9ad7a6b
|
@ -158,7 +158,6 @@ public class NodeSubclassTests<T extends B, B extends Node<B>> extends ESTestCas
|
|||
/**
|
||||
* Test {@link Node#replaceChildren} implementation on {@link #subclass}.
|
||||
*/
|
||||
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/53011")
|
||||
public void testReplaceChildren() throws Exception {
|
||||
Constructor<T> ctor = longestCtor(subclass);
|
||||
Object[] nodeCtorArgs = ctorArgs(ctor);
|
||||
|
|
|
@ -56,8 +56,8 @@ import static org.elasticsearch.xpack.ql.type.DataTypes.INTEGER;
|
|||
public class SqlNodeSubclassTests<T extends B, B extends Node<B>> extends NodeSubclassTests<T, B> {
|
||||
|
||||
private static final List<Class<?>> CLASSES_WITH_MIN_TWO_CHILDREN = asList(Percentile.class, Percentiles.class, PercentileRanks.class,
|
||||
Iif.class, IfConditional.class, IfNull.class, In.class, InPipe.class);
|
||||
|
||||
Iif.class, IfConditional.class, IfNull.class, In.class, InPipe.class,
|
||||
org.elasticsearch.xpack.ql.expression.predicate.operator.comparison.In.class);
|
||||
|
||||
public SqlNodeSubclassTests(Class<T> subclass) {
|
||||
super(subclass);
|
||||
|
|
Loading…
Reference in New Issue