From a5ce6e4de3dacfac916cfc3b3270a0d7f190b632 Mon Sep 17 00:00:00 2001 From: "Gitelman, Tal (tg851x)" Date: Mon, 19 Mar 2018 17:05:55 +0200 Subject: Align current csit testing - fix CSIT tests Change-Id: I63e1af740ca281da404231bb3bff67f4c94541e1 Issue-ID: SDC-1097 Signed-off-by: Gitelman, Tal (tg851x) --- .../org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'catalog-be/src') diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java index f6cb50c5c2..0dce2a3cd9 100644 --- a/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java +++ b/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ResourceBusinessLogic.java @@ -2857,7 +2857,7 @@ public class ResourceBusinessLogic extends ComponentBusinessLogic { String value = null; List getInputs = null; boolean isValidate = true; - if (propertyInfo.getValue() != null) { + if (null != propertyInfo && propertyInfo.getValue() != null) { getInputs = propertyInfo.getGet_input(); isValidate = getInputs == null || getInputs.isEmpty(); if (isValidate) { -- cgit 1.2.3-korg