Skip to content

Commit c362c3a

Browse files
committed
fix tests
1 parent 4365325 commit c362c3a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

jbpm/jbpm-tests/src/test/java/org/jbpm/bpmn2/IntermediateEventTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
import org.jbpm.process.instance.impl.demo.SystemOutWorkItemHandler;
7676
import org.jbpm.test.util.NodeLeftCountDownProcessEventListener;
7777
import org.jbpm.test.util.ProcessCompletedCountDownProcessEventListener;
78+
import org.jbpm.test.utils.EventTrackerProcessListener;
7879
import org.jbpm.test.utils.ProcessTestHelper;
7980
import org.jbpm.test.utils.ProcessTestHelper.CompletionKogitoEventListener;
8081
import org.junit.jupiter.api.Disabled;
@@ -137,7 +138,7 @@ public void beforeNodeTriggered(ProcessNodeTriggeredEvent event) {
137138
@Test
138139
public void testBoundaryTimerCycleISO() {
139140
Application app = ProcessTestHelper.newApplication();
140-
NodeLeftCountDownProcessEventListener listener = new NodeLeftCountDownProcessEventListener("Send Update", 3);
141+
NodeLeftCountDownProcessEventListener listener = new NodeLeftCountDownProcessEventListener("Send Update Timer", 3);
141142
ProcessTestHelper.registerProcessEventListener(app, listener);
142143
org.kie.kogito.process.Process<BoundaryTimerCycleISOModel> definition = BoundaryTimerCycleISOProcess.newProcess(app);
143144
org.kie.kogito.process.ProcessInstance<BoundaryTimerCycleISOModel> instance = definition.createInstance(definition.createModel());
@@ -150,7 +151,7 @@ public void testBoundaryTimerCycleISO() {
150151
@Test
151152
public void testBoundaryTimerCycleISOVariable() {
152153
Application app = ProcessTestHelper.newApplication();
153-
NodeLeftCountDownProcessEventListener listener = new NodeLeftCountDownProcessEventListener("Send Update", 3);
154+
NodeLeftCountDownProcessEventListener listener = new NodeLeftCountDownProcessEventListener("Send Update Timer", 3);
154155
ProcessTestHelper.registerProcessEventListener(app, listener);
155156
org.kie.kogito.process.Process<BoundaryTimerCycleISOVariableModel> definition = BoundaryTimerCycleISOVariableProcess.newProcess(app);
156157
BoundaryTimerCycleISOVariableModel model = definition.createModel();

0 commit comments

Comments
 (0)