Skip to content

Commit 4cc3a1c

Browse files
committed
Fix compile
1 parent 1127507 commit 4cc3a1c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

server/src/test/java/org/elasticsearch/search/crossproject/CrossProjectIndexResolutionValidatorTests.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1696,7 +1696,8 @@ public void testWildcardClusterAliasConcreteIndex() {
16961696
)
16971697
)
16981698
)
1699-
)
1699+
),
1700+
Map.of()
17001701
);
17011702
assertNotNull(localNotFound);
17021703
assertThat(localNotFound.getMessage(), equalTo("no such index [_origin:logs]"));
@@ -1733,7 +1734,8 @@ public void testWildcardClusterAliasConcreteIndex() {
17331734
)
17341735
)
17351736
)
1736-
)
1737+
),
1738+
Map.of()
17371739
);
17381740
assertNotNull(remoteNotFound);
17391741
assertThat(remoteNotFound.getMessage(), equalTo("no such index [linked-1:logs]"));

0 commit comments

Comments
 (0)