From 62b6b17038499121cdd9a793ddceff3a3ab80f7e Mon Sep 17 00:00:00 2001 From: Elena Kuleshov Date: Thu, 1 Aug 2019 01:47:58 -0400 Subject: Use correct name and id for VNFUnsetClosedLoopDisabledFlagActivity Set name and id for VNFUnsetClosedLoopDisabledFlagActivity to VNFUnsetClosedLoopDisabledFlagActivity Issue-ID: SO-2183 Signed-off-by: Kuleshov, Elena Change-Id: I401258b2db32c43566019a903a57ca61e30649e0 --- .../subprocess/Activity/VNFUnsetClosedLoopDisabledFlagActivity.bpmn | 6 +++--- .../bpmn/subprocess/VNFUnsetClosedLoopDisabledFlagActivityTest.java | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/Activity/VNFUnsetClosedLoopDisabledFlagActivity.bpmn b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/Activity/VNFUnsetClosedLoopDisabledFlagActivity.bpmn index 0dbe989cb2..d70e103009 100644 --- a/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/Activity/VNFUnsetClosedLoopDisabledFlagActivity.bpmn +++ b/bpmn/so-bpmn-building-blocks/src/main/resources/subprocess/Activity/VNFUnsetClosedLoopDisabledFlagActivity.bpmn @@ -1,6 +1,6 @@ - - + + SequenceFlow_19it9ao @@ -15,7 +15,7 @@ - + diff --git a/bpmn/so-bpmn-building-blocks/src/test/java/org/onap/so/bpmn/infrastructure/bpmn/subprocess/VNFUnsetClosedLoopDisabledFlagActivityTest.java b/bpmn/so-bpmn-building-blocks/src/test/java/org/onap/so/bpmn/infrastructure/bpmn/subprocess/VNFUnsetClosedLoopDisabledFlagActivityTest.java index 035d124402..a7be9e69c1 100644 --- a/bpmn/so-bpmn-building-blocks/src/test/java/org/onap/so/bpmn/infrastructure/bpmn/subprocess/VNFUnsetClosedLoopDisabledFlagActivityTest.java +++ b/bpmn/so-bpmn-building-blocks/src/test/java/org/onap/so/bpmn/infrastructure/bpmn/subprocess/VNFUnsetClosedLoopDisabledFlagActivityTest.java @@ -33,7 +33,7 @@ public class VNFUnsetClosedLoopDisabledFlagActivityTest extends BaseBPMNTest { @Test public void sunnyDayVNFUnsetClosedLoopDisabledFlagActivity_Test() throws InterruptedException { ProcessInstance pi = - runtimeService.startProcessInstanceByKey("VNFUnsetInClosedLoopDisabledFlagActivity", variables); + runtimeService.startProcessInstanceByKey("VNFUnsetClosedLoopDisabledFlagActivity", variables); assertThat(pi).isNotNull(); assertThat(pi).isStarted().hasPassedInOrder("VNFUnsetClosedLoopDisabledFlagActivity_Start", "TaskVNFUnsetClosedLoopDisabledFlagActivity", "VNFUnsetClosedLoopDisabledFlagActivity_End"); @@ -45,7 +45,7 @@ public class VNFUnsetClosedLoopDisabledFlagActivityTest extends BaseBPMNTest { doThrow(new BpmnError("7000", "TESTING ERRORS")).when(aaiFlagTasks) .modifyVnfClosedLoopDisabledFlag(any(BuildingBlockExecution.class), any(boolean.class)); ProcessInstance pi = - runtimeService.startProcessInstanceByKey("VNFUnsetInClosedLoopDisabledFlagActivity", variables); + runtimeService.startProcessInstanceByKey("VNFUnsetClosedLoopDisabledFlagActivity", variables); assertThat(pi).isNotNull(); assertThat(pi).isStarted() .hasPassedInOrder("VNFUnsetClosedLoopDisabledFlagActivity_Start", -- cgit 1.2.3-korg