Skip to content

Commit

Permalink
Unmute and adjust IndicesClientIT.testDataStreams() test (elastic#65879)
Browse files Browse the repository at this point in the history
Removed assertion that is flaky in CI and not really necessary to test HLRC integration.

Relates to elastic#60461
  • Loading branch information
martijnvg authored Dec 8, 2020
1 parent 38a0c33 commit b4485ec
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1573,7 +1573,6 @@ public void testDeleteAlias() throws IOException {
assertThat(aliasExists(index, alias2), equalTo(true));
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/60461")
public void testDataStreams() throws Exception {
String dataStreamName = "data-stream";

Expand Down Expand Up @@ -1624,7 +1623,6 @@ public void testDataStreams() throws Exception {
assertThat(backingIndices, equalTo(1));
ByteSizeValue byteSizeValue = dataStreamsStatsResponse.getTotalStoreSize();
assertThat(byteSizeValue, notNullValue());
assertThat(byteSizeValue.getBytes(), not(equalTo(0L)));
Map<String, DataStreamStats> dataStreamsStats = dataStreamsStatsResponse.getDataStreams();
assertThat(dataStreamsStats, notNullValue());
assertThat(dataStreamsStats.size(), equalTo(1));
Expand Down

0 comments on commit b4485ec

Please sign in to comment.