aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-distribution-client/src/test/java/org/onap/sdc/utils/KafkaCommonConfigTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-distribution-client/src/test/java/org/onap/sdc/utils/KafkaCommonConfigTest.java')
-rw-r--r--sdc-distribution-client/src/test/java/org/onap/sdc/utils/KafkaCommonConfigTest.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/sdc-distribution-client/src/test/java/org/onap/sdc/utils/KafkaCommonConfigTest.java b/sdc-distribution-client/src/test/java/org/onap/sdc/utils/KafkaCommonConfigTest.java
index 36730b5..a60a785 100644
--- a/sdc-distribution-client/src/test/java/org/onap/sdc/utils/KafkaCommonConfigTest.java
+++ b/sdc-distribution-client/src/test/java/org/onap/sdc/utils/KafkaCommonConfigTest.java
@@ -35,8 +35,7 @@ public class KafkaCommonConfigTest {
@Test
public void testConsumerPropertiesNoSSL(){
- List<String> msgBusAddress = new ArrayList<>();
- msgBusAddress.add("address1");
+ String msgBusAddress = "address1";
testConfigNoSSL.setMsgBusAddress(msgBusAddress);
KafkaCommonConfig kafkaCommonConfig = new KafkaCommonConfig(testConfigNoSSL);
Properties consumerProperties = kafkaCommonConfig.getConsumerProperties();
@@ -45,8 +44,7 @@ public class KafkaCommonConfigTest {
@Test
public void testProducerPropertiesWithSSL(){
- List<String> msgBusAddress = new ArrayList<>();
- msgBusAddress.add("address1");
+ String msgBusAddress = "address1";
testConfigWithSSL.setMsgBusAddress(msgBusAddress);
KafkaCommonConfig kafkaCommonConfig = new KafkaCommonConfig(testConfigWithSSL);
Properties consumerProperties = kafkaCommonConfig.getProducerProperties();