Skip to content

Commit

Permalink
ingest: fix merge for backport of elastic#36618
Browse files Browse the repository at this point in the history
  • Loading branch information
jakelandis committed Dec 18, 2018
1 parent 38d9f3f commit 9d67175
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public void testGetIndexWriteRequest() throws Exception {
assertEquals(TransportBulkAction.getIndexWriteRequest(docAsUpsertRequest), indexRequest);
assertEquals(TransportBulkAction.getIndexWriteRequest(scriptedUpsert), indexRequest);

DeleteRequest deleteRequest = new DeleteRequest("index", "id");
DeleteRequest deleteRequest = new DeleteRequest("index", "type", "id");
assertNull(TransportBulkAction.getIndexWriteRequest(deleteRequest));

UpdateRequest badUpsertRequest = new UpdateRequest("index", "type", "id1");
Expand Down

0 comments on commit 9d67175

Please sign in to comment.