Skip to content

Commit 2424a1b

Browse files
Fix broken backport of #31578 by adjusting constructor (#31587)
1 parent 3ae0a89 commit 2424a1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/ForEachProcessorTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ public void testNestedForEach() throws Exception {
274274

275275
public void testIgnoreMissing() throws Exception {
276276
IngestDocument originalIngestDocument = new IngestDocument(
277-
"_index", "_type", "_id", null, null, null, Collections.emptyMap()
277+
"_index", "_type", "_id", null, null, null, null, Collections.emptyMap()
278278
);
279279
IngestDocument ingestDocument = new IngestDocument(originalIngestDocument);
280280
TestProcessor testProcessor = new TestProcessor(doc -> {});

0 commit comments

Comments
 (0)