Skip to content

Commit

Permalink
Fix UTs
Browse files Browse the repository at this point in the history
Signed-off-by: Sachin Kale <[email protected]>
  • Loading branch information
Sachin Kale committed Aug 12, 2022
1 parent d6dea08 commit 13999e0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ public void testEnablingRemoteStoreFailsWhenReplicationTypeIsDocument() {
() -> IndexMetadata.INDEX_REMOTE_STORE_ENABLED_SETTING.get(indexSettings)
);
assertEquals(
"Settings index.remote_store.enabled cannot be enabled when index.replication.type is set to DOCUMENT",
"To enable index.remote_store.enabled, index.replication.type should be set to SEGMENT",
iae.getMessage()
);
}
Expand All @@ -878,7 +878,7 @@ public void testEnablingRemoteStoreFailsWhenReplicationTypeIsDefault() {
() -> IndexMetadata.INDEX_REMOTE_STORE_ENABLED_SETTING.get(indexSettings)
);
assertEquals(
"Settings index.remote_store.enabled cannot be enabled when index.replication.type is set to DOCUMENT",
"To enable index.remote_store.enabled, index.replication.type should be set to SEGMENT",
iae.getMessage()
);
}
Expand Down

0 comments on commit 13999e0

Please sign in to comment.