@@ -1189,6 +1189,7 @@ func (t *TaskHandlersTestSuite) TestGetWorkflowInfo() {
1189
1189
Input : lastCompletionResult ,
1190
1190
TaskQueue : & taskqueuepb.TaskQueue {Name : testWorkflowTaskTaskqueue },
1191
1191
ParentWorkflowExecution : parentExecution ,
1192
+ RootWorkflowExecution : parentExecution ,
1192
1193
CronSchedule : cronSchedule ,
1193
1194
ContinuedExecutionRunId : continuedRunID ,
1194
1195
ParentWorkflowNamespace : parentNamespace ,
@@ -1221,6 +1222,8 @@ func (t *TaskHandlersTestSuite) TestGetWorkflowInfo() {
1221
1222
t .EqualValues (testWorkflowTaskTaskqueue , result .TaskQueueName )
1222
1223
t .EqualValues (parentID , result .ParentWorkflowExecution .ID )
1223
1224
t .EqualValues (parentRunID , result .ParentWorkflowExecution .RunID )
1225
+ t .EqualValues (parentID , result .RootWorkflowExecution .ID )
1226
+ t .EqualValues (parentRunID , result .RootWorkflowExecution .RunID )
1224
1227
t .EqualValues (cronSchedule , result .CronSchedule )
1225
1228
t .EqualValues (continuedRunID , result .ContinuedExecutionRunID )
1226
1229
t .EqualValues (parentNamespace , result .ParentWorkflowNamespace )
0 commit comments