summaryrefslogtreecommitdiffstats
path: root/cps-ncmp-service
diff options
context:
space:
mode:
authorJoseph Keenan <joseph.keenan@est.tech>2022-06-22 09:16:56 +0000
committerGerrit Code Review <gerrit@onap.org>2022-06-22 09:16:56 +0000
commit31cf29d21096ab7200658f586ecb9e40ee72249e (patch)
tree17fc18570d91cd42e324ed5ee7b497baad377656 /cps-ncmp-service
parentb000d8915b371724869195ba0889f7082eecc9f1 (diff)
parent81d917dde44ea902b2ecf22e217e9551299f414e (diff)
Merge "Eliminate cmhandle-properties tag"
Diffstat (limited to 'cps-ncmp-service')
-rw-r--r--cps-ncmp-service/src/test/groovy/org/onap/cps/ncmp/api/impl/event/NcmpEventsCreatorSpec.groovy4
1 files changed, 2 insertions, 2 deletions
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']