Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
Signed-off-by: Sandesh Kumar <[email protected]>
  • Loading branch information
sandeshkr419 committed Feb 26, 2024
1 parent c6c1112 commit 698b75e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ public void testSimpleAggregationWithStoredValues() throws Exception {
testSimple((document, field, value) -> {
document.add(new SortedSetDocValuesField(field, new BytesRef(value)));
document.add(new StringField(field, value, Field.Store.NO));
}, NOOP_POST_COLLECTION_CONSUMER);
}, NOOP_POST_COLLECTION);

}

Expand Down Expand Up @@ -371,7 +371,7 @@ public void testStringIncludeExcludeWithStoredValues() throws Exception {
testStringIncludeExclude((document, field, value) -> {
document.add(new SortedSetDocValuesField(field, new BytesRef(value)));
document.add(new StringField(field, value, Field.Store.NO));
}, NOOP_POST_COLLECTION_CONSUMER);
}, NOOP_POST_COLLECTION);
}

private void testStringIncludeExclude(TriConsumer<Document, String, String> addField, Consumer<TermsAggregator> postCollectionConsumer)
Expand Down

0 comments on commit 698b75e

Please sign in to comment.