summaryrefslogtreecommitdiffstats
path: root/common-app-api/src/test/java/org/openecomp/sdc/common/util/HealthCheckUtilTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'common-app-api/src/test/java/org/openecomp/sdc/common/util/HealthCheckUtilTest.java')
-rw-r--r--common-app-api/src/test/java/org/openecomp/sdc/common/util/HealthCheckUtilTest.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/common-app-api/src/test/java/org/openecomp/sdc/common/util/HealthCheckUtilTest.java b/common-app-api/src/test/java/org/openecomp/sdc/common/util/HealthCheckUtilTest.java
index 3fc025eb22..d51f8c878b 100644
--- a/common-app-api/src/test/java/org/openecomp/sdc/common/util/HealthCheckUtilTest.java
+++ b/common-app-api/src/test/java/org/openecomp/sdc/common/util/HealthCheckUtilTest.java
@@ -76,10 +76,9 @@ public class HealthCheckUtilTest {
@Test
public void validateGetAggregateDescriptionReturnsProperDescription() {
- final String parentDescription = "";
when(healthCheckInfo.getHealthCheckStatus()).thenReturn(HealthCheckInfo.HealthCheckStatus.DOWN);
- final String result = healthCheckUtil.getAggregateDescription(healthCheckInfos, parentDescription);
+ final String result = healthCheckUtil.getAggregateDescription(healthCheckInfos );
assertTrue(result.contains(testComponent));
assertTrue(result.contains("Down"));