Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
Signed-off-by: Bharathwaj G <bharath78910@gmail.com>
  • Loading branch information
bharath-techie committed Oct 18, 2024
1 parent ded4921 commit 5a5e8af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public void testStarTreeKeywordDocValuesWithDeletions() throws IOException {
for (int iter = 0; iter < iterations; iter++) {
// Add 10 documents
for (int i = 0; i < 10; i++) {
String id = String.valueOf(allIds.size() + 1);
String id = String.valueOf(random().nextInt() + 1);
allIds.add(id);
Document doc = new Document();
doc.add(new StringField("_id", id, Field.Store.YES));
Expand Down

0 comments on commit 5a5e8af

Please sign in to comment.