diff options
author | Eylon Malin <eylon.malin@intl.att.com> | 2019-08-29 14:47:01 +0300 |
---|---|---|
committer | Eylon Malin <eylon.malin@intl.att.com> | 2019-08-29 14:48:02 +0300 |
commit | 44d49cc9257c70ffdf70b9f6c8252792e706c48b (patch) | |
tree | 946299ecfef784bf0ab33a1f1b5039de10be846d /vid-app-common/src/main | |
parent | a4aae1860d3aa324dbfa54c639aa7da39c18745c (diff) |
add UT to ToscaParserImpl and fix little bug
Issue-ID: VID-378
Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
Change-Id: I5ea0f09c2898c3a7e1db60d37dde754138a86121
Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
Diffstat (limited to 'vid-app-common/src/main')
-rw-r--r-- | vid-app-common/src/main/java/org/onap/vid/model/ServiceModel.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/model/ServiceModel.java b/vid-app-common/src/main/java/org/onap/vid/model/ServiceModel.java index 121c7e4c1..1c8a465cb 100644 --- a/vid-app-common/src/main/java/org/onap/vid/model/ServiceModel.java +++ b/vid-app-common/src/main/java/org/onap/vid/model/ServiceModel.java @@ -333,7 +333,7 @@ public class ServiceModel { // now check to see if there is a vf module with customization name that starts with normalizedVnfCustomizationName - if (!MapUtils.isEmpty(getVolumeGroups())) { + if (!MapUtils.isEmpty(getVfModules())) { for (Entry<String, VfModule> vfModuleComponent : getVfModules().entrySet()) { vfModuleCustomizationName = vfModuleComponent.getValue().getModelCustomizationName(); |