Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,9 @@ public void testExplainLifecycleForIndicesWithErrors() throws Exception {
* succeed, and there will always be an error in the error store. This behavior is subject to change in the future.
*/
assertThat(response.getIndices().get(0).getError(), is(notNullValue()));
assertThat(response.getIndices().get(1).getError(), is(nullValue()));
assertThat(response.getIndices().get(0).getError().error(), containsString("Force merge request "));
assertThat(response.getIndices().get(1).getError(), is(notNullValue()));
assertThat(response.getIndices().get(1).getError().error(), containsString("Force merge request "));
}
});
}
Expand Down
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -387,9 +387,6 @@ tests:
- class: org.elasticsearch.xpack.searchablesnapshots.SearchableSnapshotsIntegTests
method: testCreateAndRestoreSearchableSnapshot
issue: https://github.com/elastic/elasticsearch/issues/119709
- class: org.elasticsearch.datastreams.lifecycle.ExplainDataStreamLifecycleIT
method: testExplainLifecycleForIndicesWithErrors
issue: https://github.com/elastic/elasticsearch/issues/126252

# Examples:
#
Expand Down