Skip to content

Commit

Permalink
There is not need to to do that check (#3329)
Browse files Browse the repository at this point in the history
  • Loading branch information
fjtirado authored and mariofusco committed Dec 15, 2023
1 parent b3de64f commit 7e34b1e
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,7 @@ private void assertCallbackProcessMainStructure(RuleFlowProcess process) {
assertHasName(processFinalizeSuccessfulState, "FinalizeSuccessful");
ActionNode processFinalizeWithErrorState = assertClassAndGetNode(process, 6, ActionNode.class);
assertHasName(processFinalizeWithErrorState, "FinalizeWithError");
BoundaryEventNode callbackStateErrorBoundaryEvent = assertClassAndGetNode(process, 4, BoundaryEventNode.class);
assertHasName(callbackStateErrorBoundaryEvent, "Error-CallbackState-java.lang.Exception");

assertClassAndGetNode(process, 4, BoundaryEventNode.class);
assertIsConnected(processStartNode, callbackState);
assertIsConnected(callbackState, processFinalizeSuccessfulState);
assertIsConnected(processFinalizeSuccessfulState, processEndNode1);
Expand Down

0 comments on commit 7e34b1e

Please sign in to comment.