Skip to content

Commit 32c1d7b

Browse files
committed
test compile errors
1 parent adfca29 commit 32c1d7b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

modules/mapper-extras/src/test/java/org/elasticsearch/index/mapper/extras/MatchOnlyTextFieldTypeTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ public void testBlockLoaderDoesNotUseSyntheticSourceDelegateWhenIgnoreAboveIsSet
299299
mock(NamedAnalyzer.class),
300300
builder,
301301
true,
302-
useBinaryDocValues
302+
false
303303
);
304304

305305
MatchOnlyTextFieldMapper.MatchOnlyTextFieldType ft = new MatchOnlyTextFieldMapper.MatchOnlyTextFieldType(
@@ -348,7 +348,7 @@ public void testBlockLoaderDoesNotUseSyntheticSourceDelegateWhenIgnoreAboveIsSet
348348
mock(NamedAnalyzer.class),
349349
builder,
350350
true,
351-
useBinaryDocValues
351+
false
352352
);
353353

354354
MatchOnlyTextFieldMapper.MatchOnlyTextFieldType ft = new MatchOnlyTextFieldMapper.MatchOnlyTextFieldType(

x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/lucene/read/ValuesSourceReaderOperatorTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1581,7 +1581,7 @@ private KeywordFieldMapper.KeywordFieldType storedKeywordField(String name) {
15811581
Lucene.KEYWORD_ANALYZER,
15821582
new KeywordFieldMapper.Builder(name, IndexVersion.current()).docValues(false),
15831583
true, // TODO randomize - load from stored keyword fields if stored even in synthetic source
1584-
useBinaryDocValues
1584+
false
15851585
);
15861586
}
15871587

0 commit comments

Comments
 (0)