summaryrefslogtreecommitdiffstats
path: root/catalog-be-plugins
diff options
context:
space:
mode:
authorandre.schmid <andre.schmid@est.tech>2021-02-25 18:00:48 +0000
committerChristophe Closset <christophe.closset@intl.att.com>2021-02-26 17:05:37 +0000
commitf72d59b269c721a13e51f572a10324ce0add186f (patch)
tree9dc78c3c52ac624ea910234ebbea307805479092 /catalog-be-plugins
parent43b49025fd8f2cdcbbcaf436fb1c5dfabbaa4855 (diff)
Update guava version
Change-Id: I5b233162a180a29d9c7ba79fb0fa480f8f0e0da9 Issue-ID: SDC-3491 Signed-off-by: andre.schmid <andre.schmid@est.tech>
Diffstat (limited to 'catalog-be-plugins')
-rw-r--r--catalog-be-plugins/etsi-nfv-nsd-csar-plugin/src/test/java/org/openecomp/sdc/be/plugins/etsi/nfv/nsd/generator/NsDescriptorGeneratorImplTest.java15
1 files changed, 10 insertions, 5 deletions
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<String, ToscaNodeTemplate> nodeTemplateMap = new HashMap<>();
final ToscaNodeTemplate vnfAmfNodeTemplate = new ToscaNodeTemplate();
vnfAmfNodeTemplate.setType("com.ericsson.resource.abstract.Ericsson.AMF");
+ final Map<String, Object> 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<String, ToscaTemplateCapability> 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<String, ToscaProperty> 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;
}