Merge remote-tracking branch 'origin/blueberry'

This commit is contained in:
Sipke Schoorstra 2024-11-08 21:58:32 +01:00
commit 648fbf74cf

View file

@ -65,6 +65,9 @@ public class ReloadWorkflowTests : AppComponentTest
// Assert that the workflow definition service finds the updated workflow version.
var definitionV2 = await _workflowDefinitionService.FindWorkflowGraphAsync(definitionId, VersionOptions.Latest);
Assert.Equal(definitionVersionId2, definitionV2!.Workflow.Identity.Id);
// Cleanup: Delete the workflow definition and its versions.
await _workflowDefinitionManager.DeleteByDefinitionIdAsync(definitionId, CancellationToken.None);
}
[Fact]