Skip to content

Commit

Permalink
remove no longer needed Awaits
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisHegarty committed Oct 2, 2023
1 parent 4e83282 commit 084c6ee
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 084c6ee

Please sign in to comment.