Skip to content

Commit

Permalink
updated comment to include csvDelimiter for updateDocuments in Index.…
Browse files Browse the repository at this point in the history
…java
  • Loading branch information
amei34 committed Apr 22, 2024
1 parent 8e500bb commit ad7e979
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions src/main/java/com/meilisearch/sdk/Index.java
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ public TaskInfo updateDocuments(String document, String primaryKey)
*
* @param document Document to update in CSV string format
* @param primaryKey PrimaryKey of the document
* @param csvDelimiter Custom delimiter to use for the document being added
* @return TaskInfo Meilisearch API response
* @throws MeilisearchException if an error occurs
* @see <a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ public void testAddDocumentsSingle() throws Exception {
assertThat(movies[0].getGenres()[1], is(equalTo("Drama")));
}


/** Test add Documents with primaryKey */
@Test
public void testAddDocumentsWithSuppliedPrimaryKey() throws Exception {
Expand Down

0 comments on commit ad7e979

Please sign in to comment.