Skip to content

Commit

Permalink
Remove outdated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
martinweiler committed Dec 20, 2024
1 parent 830ce44 commit ffb35d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jbpm/jbpm-tests/src/test/java/org/jbpm/bpmn2/FlowTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ public void beforeNodeTriggered(ProcessNodeTriggeredEvent event) {
instance.completeWorkItem(wi.getStringId(), null);
}
assertThat(instance.status()).isEqualTo(ProcessInstance.STATE_ACTIVE);
instance.completeWorkItem(handler2.getWorkItem().getStringId(), null);//After this line, state of the process instance is error state instead of active
instance.completeWorkItem(handler2.getWorkItem().getStringId(), null);
assertThat(instance.status()).isEqualTo(ProcessInstance.STATE_ACTIVE);
instance.completeWorkItem(handler2.getWorkItem().getStringId(), null);
assertThat(instance.status()).isEqualTo(ProcessInstance.STATE_ACTIVE);
Expand Down

0 comments on commit ffb35d2

Please sign in to comment.