diff --git a/README.md b/README.md index e20729cd1..09b323c49 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# ELSA 3.0 +# ELSA 3 ![Elsa Workflows](./design/artwork/elsa-v3-avatar.png) diff --git a/test/integration/Elsa.Workflows.IntegrationTests/Core/ScheduleActivityExecutionContextTests.cs b/test/integration/Elsa.Workflows.IntegrationTests/Core/ScheduleActivityExecutionContextTests.cs index 23649ca55..1e5645a1a 100644 --- a/test/integration/Elsa.Workflows.IntegrationTests/Core/ScheduleActivityExecutionContextTests.cs +++ b/test/integration/Elsa.Workflows.IntegrationTests/Core/ScheduleActivityExecutionContextTests.cs @@ -21,7 +21,7 @@ public class ScheduleActivityExecutionContextTests(ITestOutputHelper testOutputH }; var workflowGraphBuilder = _serviceProvider.GetRequiredService(); var workflowGraph = await workflowGraphBuilder.BuildAsync(workflow); - var workflowExecutionContext = await WorkflowExecutionContext.CreateAsync(_serviceProvider, workflowGraph, "test"); + var workflowExecutionContext = await WorkflowExecutionContext.CreateAsync(_serviceProvider, workflowGraph, "test", CancellationToken.None); var activityExecutionContext = await workflowExecutionContext.CreateActivityExecutionContextAsync(writeLineA); await Assert.ThrowsAsync(() => activityExecutionContext.ScheduleActivityAsync(writeLineB).AsTask());