From 81d917dde44ea902b2ecf22e217e9551299f414e Mon Sep 17 00:00:00 2001 From: mpriyank Date: Tue, 21 Jun 2022 16:31:23 +0100 Subject: Eliminate cmhandle-properties tag - Eliminate the cmhandle-properties tag in case of DELETE operation - Fixed Test cases corresponding to that Issue-ID: CPS-1098 Change-Id: Icd5e08403e0b101baf682f5e558c36ee4ebfd5c3 Signed-off-by: mpriyank --- .../org/onap/cps/ncmp/api/impl/event/NcmpEventsCreatorSpec.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cps-ncmp-service/src/test/groovy/org') diff --git a/cps-ncmp-service/src/test/groovy/org/onap/cps/ncmp/api/impl/event/NcmpEventsCreatorSpec.groovy b/cps-ncmp-service/src/test/groovy/org/onap/cps/ncmp/api/impl/event/NcmpEventsCreatorSpec.groovy index 04eb0bf2b..ae38714e2 100644 --- a/cps-ncmp-service/src/test/groovy/org/onap/cps/ncmp/api/impl/event/NcmpEventsCreatorSpec.groovy +++ b/cps-ncmp-service/src/test/groovy/org/onap/cps/ncmp/api/impl/event/NcmpEventsCreatorSpec.groovy @@ -45,8 +45,8 @@ class NcmpEventsCreatorSpec extends Specification { assert result.eventCorrelationId == cmHandleId and: 'event payload is mapped correctly' assert result.event.operation == operation - assert result.event.cmhandleProperties.size() == cmHandlePropertiesListSize - assert result.event.cmhandleProperties[0] == cmHandleProperties + assert (result.event.cmhandleProperties != null) ? result.event.cmhandleProperties.size() : 0 == cmHandlePropertiesListSize + assert (result.event.cmhandleProperties != null) ? result.event.cmhandleProperties[0] : null == cmHandleProperties where: 'the following operations are used' operation | cmHandlePropertiesListSize | cmHandleProperties CREATE | 1 | ['publicProperty1': 'value1', 'publicProperty2': 'value2'] -- cgit 1.2.3-korg