We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cc494a commit 0207eb7Copy full SHA for 0207eb7
server/src/internalClusterTest/java/org/elasticsearch/ingest/IngestClientIT.java
@@ -441,7 +441,7 @@ public void testBulkRequestWithInvalidJsonAndPipeline() throws Exception {
441
assertThat(item1.getFailure().getStatus(), equalTo(org.elasticsearch.rest.RestStatus.BAD_REQUEST));
442
assertThat(item1.getFailure().getCause(), instanceOf(IllegalArgumentException.class));
443
444
- // Second document should fail
+ // Third document should fail
445
BulkItemResponse item2 = response.getItems()[2];
446
assertThat(item2.isFailed(), is(true));
447
assertThat(item2.getFailure().getStatus(), equalTo(org.elasticsearch.rest.RestStatus.BAD_REQUEST));
0 commit comments