From: Simon Brandhof Date: Mon, 25 Sep 2017 20:11:47 +0000 (+0200) Subject: SONAR-9802 remove TODO in ClusterTest X-Git-Tag: 6.6-RC1~201 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=051aa4a1defb22c593d368c26438575c12f0fe7a;p=sonarqube.git SONAR-9802 remove TODO in ClusterTest --- diff --git a/tests/src/test/java/org/sonarqube/tests/cluster/ClusterTest.java b/tests/src/test/java/org/sonarqube/tests/cluster/ClusterTest.java index 9ddde1ac32d..ea5069f5ece 100644 --- a/tests/src/test/java/org/sonarqube/tests/cluster/ClusterTest.java +++ b/tests/src/test/java/org/sonarqube/tests/cluster/ClusterTest.java @@ -125,7 +125,6 @@ public class ClusterTest { .filter(n -> n.getPort() == node.getConfig().getHzPort()) .findFirst() .orElseThrow(() -> new IllegalStateException("Node with port " + node.getConfig().getHzPort() + " not found in api/system/health")); - // TODO assertions to be improved assertThat(healthNode.getStartedAt()).isNotEmpty(); assertThat(healthNode.getHost()).isNotEmpty(); assertThat(healthNode.getCausesCount()).isEqualTo(0);