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 Dec 13, 2023
1 parent 0d623be commit 4fcfa98
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 4fcfa98

Please sign in to comment.