Refactor WaitAsync call in DispatchWorkflowsTests to remove unnecessary generic type.

This commit is contained in:
Sipke Schoorstra 2025-09-24 20:39:31 +02:00
parent bdfbd0886f
commit 431e175d45
No known key found for this signature in database
GPG key ID: 5C10502B28A4268F

View file

@ -31,6 +31,6 @@ public class DispatchWorkflowsTests : AppComponentTest
WorkflowDefinitionHandle = WorkflowDefinitionHandle.ByDefinitionId(DispatchAndWaitWorkflow.DefinitionId, VersionOptions.Published)
});
await workflowClient.RunInstanceAsync(RunWorkflowInstanceRequest.Empty);
await _signalManager.WaitAsync<object>("Completed");
await _signalManager.WaitAsync("Completed");
}
}