X-Git-Url: https://gerrit.onap.org/r/gitweb?p=dmaap%2Fdbcapi.git;a=blobdiff_plain;f=src%2Ftest%2Fjava%2Forg%2Fonap%2Fdmaap%2Fdbcapi%2Fmodel%2FMR_ClusterTest.java;h=df102e3be65bacfadd59891ad67e3f262935eb6a;hp=26bca4c4090f7a8070a6b7d702810fcbf62af476;hb=ac03a4b32eae987019cec2cd39d6d252fb320c2f;hpb=fb8a36eeec10b389a3ccc79c5f31ee925243c1b8 diff --git a/src/test/java/org/onap/dmaap/dbcapi/model/MR_ClusterTest.java b/src/test/java/org/onap/dmaap/dbcapi/model/MR_ClusterTest.java index 26bca4c..df102e3 100644 --- a/src/test/java/org/onap/dmaap/dbcapi/model/MR_ClusterTest.java +++ b/src/test/java/org/onap/dmaap/dbcapi/model/MR_ClusterTest.java @@ -30,7 +30,7 @@ import org.junit.Before; import org.junit.Test; import org.onap.dmaap.dbcapi.testframework.ReflectionHarness; public class MR_ClusterTest { - String d, fqdn, a; + String d, fqdn; ReflectionHarness rh = new ReflectionHarness(); @@ -38,7 +38,6 @@ public class MR_ClusterTest { public void setUp() throws Exception { d = "central-onap"; fqdn = "mr.onap.org"; - a = "ignore"; } @After @@ -59,8 +58,7 @@ public class MR_ClusterTest { @Test public void testMR_ClusterClassConstructor() { - String[] h = { "host1", "host2", "host3" }; - MR_Cluster t = new MR_Cluster( d, fqdn, a, h ); + MR_Cluster t = new MR_Cluster( d, fqdn, "http", "3904"); t.getHosts();