File tree Expand file tree Collapse file tree
modules/flowable-engine/src/test/java/org/flowable/engine/test/json Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -232,6 +232,7 @@ public void execute(DelegateExecution execution) {
232232 .transientVariable ("jsonBean" , javaDelegate )
233233 .start ();
234234
235+ customer = (ObjectNode ) runtimeService .getVariable (processInstance .getId (), "customer" );
235236 assertThatJson (customer )
236237 .isEqualTo ("{"
237238 + " name: 'Kermit',"
@@ -372,6 +373,7 @@ public void execute(DelegateExecution execution) {
372373 .transientVariable ("jsonBean" , javaDelegate )
373374 .start ();
374375
376+ customer = (ObjectNode ) runtimeService .getVariable (processInstance .getId (), "customer" );
375377 assertThatJson (customer )
376378 .isEqualTo ("{"
377379 + " name: 'Kermit',"
@@ -433,6 +435,7 @@ public void execute(DelegateExecution execution) {
433435 .transientVariable ("jsonBean" , javaDelegate )
434436 .start ();
435437
438+ customer = (ObjectNode ) runtimeService .getVariable (processInstance .getId (), "customer" );
436439 assertThatJson (customer )
437440 .isEqualTo ("{"
438441 + " name: 'Kermit'"
You can’t perform that action at this time.
0 commit comments