From f72d59b269c721a13e51f572a10324ce0add186f Mon Sep 17 00:00:00 2001 From: "andre.schmid" Date: Thu, 25 Feb 2021 18:00:48 +0000 Subject: Update guava version Change-Id: I5b233162a180a29d9c7ba79fb0fa480f8f0e0da9 Issue-ID: SDC-3491 Signed-off-by: andre.schmid --- .../nfv/nsd/generator/NsDescriptorGeneratorImplTest.java | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'catalog-be-plugins/etsi-nfv-nsd-csar-plugin/src') diff --git a/catalog-be-plugins/etsi-nfv-nsd-csar-plugin/src/test/java/org/openecomp/sdc/be/plugins/etsi/nfv/nsd/generator/NsDescriptorGeneratorImplTest.java b/catalog-be-plugins/etsi-nfv-nsd-csar-plugin/src/test/java/org/openecomp/sdc/be/plugins/etsi/nfv/nsd/generator/NsDescriptorGeneratorImplTest.java index 19cfefaba3..36651493d8 100644 --- a/catalog-be-plugins/etsi-nfv-nsd-csar-plugin/src/test/java/org/openecomp/sdc/be/plugins/etsi/nfv/nsd/generator/NsDescriptorGeneratorImplTest.java +++ b/catalog-be-plugins/etsi-nfv-nsd-csar-plugin/src/test/java/org/openecomp/sdc/be/plugins/etsi/nfv/nsd/generator/NsDescriptorGeneratorImplTest.java @@ -129,10 +129,12 @@ class NsDescriptorGeneratorImplTest { final HashMap nodeTemplateMap = new HashMap<>(); final ToscaNodeTemplate vnfAmfNodeTemplate = new ToscaNodeTemplate(); vnfAmfNodeTemplate.setType("com.ericsson.resource.abstract.Ericsson.AMF"); + final Map propertyMap = new HashMap<>(); //a property to be excluded - vnfAmfNodeTemplate.setProperties(ImmutableMap.of("nf_naming_code", new ToscaProperty())); + propertyMap.put("nf_naming_code", new ToscaProperty()); //a property that wont be excluded - vnfAmfNodeTemplate.setProperties(ImmutableMap.of("will_not_be_excluded", new ToscaProperty())); + propertyMap.put("will_not_be_excluded", new ToscaProperty()); + vnfAmfNodeTemplate.setProperties(propertyMap); nodeTemplateMap.put(VNFD_AMF_NODE_NAME, vnfAmfNodeTemplate); final Map vnfAmfCapabilities = new HashMap<>(); vnfAmfCapabilities.put("myCapability", new ToscaTemplateCapability()); @@ -196,9 +198,12 @@ class NsDescriptorGeneratorImplTest { private ToscaNodeType createDefaultInterfaceToscaNodeType(final String designerPropertyValue, final String versionPropertyValue, final String namePropertyValue, final String invariantIdPropertyValue) { final ToscaNodeType interfaceToscaNodeType = new ToscaNodeType(); - interfaceToscaNodeType.setProperties(ImmutableMap - .of("designer", createToscaProperty(designerPropertyValue), "version", createToscaProperty(versionPropertyValue), "name", - createToscaProperty(namePropertyValue), "invariant_id", createToscaProperty(invariantIdPropertyValue))); + final Map propertyMap = new HashMap<>(); + propertyMap.put("designer", createToscaProperty(designerPropertyValue)); + propertyMap.put("version", createToscaProperty(versionPropertyValue)); + propertyMap.put("name", createToscaProperty(namePropertyValue)); + propertyMap.put("invariant_id", createToscaProperty(invariantIdPropertyValue)); + interfaceToscaNodeType.setProperties(propertyMap); return interfaceToscaNodeType; } -- cgit 1.2.3-korg