We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 750bdb5 commit 435c7fbCopy full SHA for 435c7fb
internal/workflow/executor_test.go
@@ -317,8 +317,8 @@ func Test_ExecuteWorkflowWithSelector(t *testing.T) {
317
require.Equal(t, 1, workflowWithSelectorHits)
318
require.Len(t, e.workflowState.Commands(), 2)
319
320
- require.IsType(t, &command.ScheduleTimerCommand{}, e.workflowState.Commands()[0])
321
- require.IsType(t, &command.ScheduleActivityCommand{}, e.workflowState.Commands()[1])
+ require.IsType(t, &command.ScheduleActivityCommand{}, e.workflowState.Commands()[0])
+ require.IsType(t, &command.ScheduleTimerCommand{}, e.workflowState.Commands()[1])
322
}
323
324
func Test_ExecuteNewEvents(t *testing.T) {
0 commit comments