diff options
author | Byung-Woo Jun <byung-woo.jun@est.tech> | 2021-08-17 11:30:58 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-08-17 11:30:58 +0000 |
commit | 9e597da1e74ab81a27879f6100335e6815ff1702 (patch) | |
tree | f41804027c38ae4530e08ab8d9a4cae5413a3754 /bpmn/so-bpmn-infrastructure-common/src/test/groovy/org/onap | |
parent | 1ceb7d62d1c1f53e680b5d5dbcc2cdd5e339bf28 (diff) | |
parent | 12d11c2c6fe356d00dfb8a324f4e6ef8726a1aca (diff) |
Merge "Fix Relationship update b/w core NSSI and its Sliceprofile"
Diffstat (limited to 'bpmn/so-bpmn-infrastructure-common/src/test/groovy/org/onap')
-rw-r--r-- | bpmn/so-bpmn-infrastructure-common/src/test/groovy/org/onap/so/bpmn/infrastructure/scripts/DoActivateCoreNSSITest.groovy | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/bpmn/so-bpmn-infrastructure-common/src/test/groovy/org/onap/so/bpmn/infrastructure/scripts/DoActivateCoreNSSITest.groovy b/bpmn/so-bpmn-infrastructure-common/src/test/groovy/org/onap/so/bpmn/infrastructure/scripts/DoActivateCoreNSSITest.groovy index e4c6fe5f60..b32b96b123 100644 --- a/bpmn/so-bpmn-infrastructure-common/src/test/groovy/org/onap/so/bpmn/infrastructure/scripts/DoActivateCoreNSSITest.groovy +++ b/bpmn/so-bpmn-infrastructure-common/src/test/groovy/org/onap/so/bpmn/infrastructure/scripts/DoActivateCoreNSSITest.groovy @@ -136,18 +136,6 @@ class DoActivateCoreNSSITest extends MsoGroovyTest { Mockito.verify(mockExecution, times(1)).setVariable(eq("vnfId"), captor.capture()) assertEquals("eeb66c6f-36bd-47ad-8294-48f46b1aa912", captor.getValue()) - Mockito.verify(mockExecution, times(1)).setVariable(eq("snssaiAndOrchStatusList"), captor.capture()) - List<Map<String, Object>> snssaiList = new ArrayList<>() - Map<String, Object> snssaiMap = new LinkedHashMap<>() - snssaiMap.put("snssai", "01-5C83F071") - snssaiMap.put("status", "activated") - snssaiList.add(snssaiMap) - Map<String, Object> snssaiMap1 = new LinkedHashMap<>() - snssaiMap1.put("snssai", "01-5B179BD4") - snssaiMap1.put("status", "activated") - snssaiList.add(snssaiMap1) - assertEquals(snssaiList, captor.getValue()) - //Verify Project Mockito.verify(mockExecution, times(1)).setVariable(eq("projectName"), captor.capture()) assertEquals("Project-generic", captor.getValue()) |