Skip to content

Commit

Permalink
Ensure FunctionRegistry disposal in FunctionCanBeSuspendedForASecondS…
Browse files Browse the repository at this point in the history
…uccessfully test
  • Loading branch information
stidsborg committed Jul 26, 2024
1 parent 603b1d4 commit c910410
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class ReactiveIntegrationTests
public async Task FunctionCanBeSuspendedForASecondSuccessfully()
{
var store = new InMemoryFunctionStore();
var functionsRegistry = new FunctionsRegistry(store);
using var functionsRegistry = new FunctionsRegistry(store);
var functionId = TestFlowId.Create();
var (flowType, flowInstance) = functionId;
var rAction = functionsRegistry.RegisterAction<string>(
Expand Down

0 comments on commit c910410

Please sign in to comment.