Skip to content

Commit 70e2f57

Browse files
committed
fix
Signed-off-by: Lantao Jin <ltjin@amazon.com>
1 parent 8e5b95f commit 70e2f57

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

integ-test/src/test/java/org/opensearch/sql/security/CalciteCrossClusterSearchIT.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
package org.opensearch.sql.security;
77

8+
import static org.opensearch.sql.legacy.TestsConstants.TEST_INDEX_BANK;
89
import static org.opensearch.sql.util.MatcherUtils.columnName;
910
import static org.opensearch.sql.util.MatcherUtils.rows;
1011
import static org.opensearch.sql.util.MatcherUtils.schema;
@@ -391,7 +392,7 @@ public void testCrossClusterAppend() throws IOException {
391392
public void testCrossClusterMvcombine() throws IOException {
392393
try {
393394
updateIndexSettings(
394-
TEST_INDEX_BANK_REMOTE,
395+
TEST_INDEX_BANK,
395396
"{ \"index\": { \"max_inner_result_window\":" + 10000 + " } }",
396397
remoteClient());
397398
JSONObject result =
@@ -409,7 +410,7 @@ public void testCrossClusterMvcombine() throws IOException {
409410
rows("Nanette", new org.json.JSONArray().put(28)));
410411
} finally {
411412
updateIndexSettings(
412-
TEST_INDEX_BANK_REMOTE,
413+
TEST_INDEX_BANK,
413414
"{ \"index\": { \"max_inner_result_window\":" + 100 + " } }",
414415
remoteClient());
415416
}

0 commit comments

Comments
 (0)