Skip to content

Commit a1b2bbf

Browse files
committed
test fixes
1 parent 9858ef5 commit a1b2bbf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ protected RestClient buildClient(Settings settings, HttpHost[] localHosts) throw
214214
// These are lookup indices, we want them on both remotes and locals
215215
public static final Set<String> LOOKUP_INDICES = CSV_DATASET_MAP.values()
216216
.stream()
217-
.filter(td -> td.settingFileName().equals("lookup-settings.json"))
217+
.filter(td -> td.settingFileName() != null && td.settingFileName().equals("lookup-settings.json"))
218218
.map(CsvTestsDataLoader.TestDataset::indexName)
219219
.collect(Collectors.toSet());
220220

x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/190_lookup_join.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ basic:
145145
- match: {values.1: [2, "yellow"]}
146146

147147
---
148-
fails with non-lookup index:
148+
fails with non-lookup index v2:
149149
- requires:
150150
capabilities:
151151
- method: POST

x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/192_lookup_join_on_aliases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ alias-repeated-index:
186186
- match: {values.1: [2, "yellow"]}
187187

188188
---
189-
fails when alias or pattern resolves to multiple:
189+
fails when alias or pattern resolves to multiple v2:
190190
- requires:
191191
capabilities:
192192
- method: POST

0 commit comments

Comments
 (0)