From 084c6eef72b9c077148527a28101ceb032036003 Mon Sep 17 00:00:00 2001 From: ChrisHegarty Date: Mon, 2 Oct 2023 16:14:54 +0100 Subject: [PATCH] remove no longer needed Awaits --- .../compute/aggregation/AggregatorFunctionTestCase.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/AggregatorFunctionTestCase.java b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/AggregatorFunctionTestCase.java index 8337121fadc4..a5466c0bea30 100644 --- a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/AggregatorFunctionTestCase.java +++ b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/aggregation/AggregatorFunctionTestCase.java @@ -184,8 +184,7 @@ public final void testEmptyInputInitialIntermediateFinal() { */ protected void assertOutputFromEmpty(Block b) { assertThat(b.elementType(), equalTo(ElementType.NULL)); - // Awaits fix: - // assertThat(b.getPositionCount(), equalTo(1)); + assertThat(b.getPositionCount(), equalTo(1)); assertThat(b.areAllValuesNull(), equalTo(true)); assertThat(b.isNull(0), equalTo(true)); assertThat(b.getValueCount(0), equalTo(0));