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 bc3086c commit 81d09aeCopy full SHA for 81d09ae
Core/Cleipnir.ResilientFunctions.Tests/TestTemplates/RFunctionTests/ControlPanelTests.cs
@@ -324,7 +324,7 @@ protected async Task SucceedingExistingParamlessFromControlPanelSucceeds(Task<IF
324
using var functionsRegistry = new FunctionsRegistry(store, new Settings(unhandledExceptionCatcher.Catch));
325
var paramlessRegistration = functionsRegistry.RegisterParamless(
326
functionTypeId,
327
- inner: () => throw new Exception("oh no")
+ inner: Task () => throw new Exception("oh no")
328
);
329
330
await Should.ThrowAsync<Exception>(() => paramlessRegistration.Invoke(functionInstanceId.Value));
0 commit comments