diff --git a/src/Ninject.Extensions.Interception.Test/AsyncInterceptionContext.cs b/src/Ninject.Extensions.Interception.Test/AsyncInterceptionContext.cs index 32fb9db..11e722e 100644 --- a/src/Ninject.Extensions.Interception.Test/AsyncInterceptionContext.cs +++ b/src/Ninject.Extensions.Interception.Test/AsyncInterceptionContext.cs @@ -87,7 +87,7 @@ public async Task AsyncMethodsWithReturnValue_InterceptorsCanCatchException() var result = await service.DoAsyncIntThrow(); BeforeAfterCallOrderInterceptor.Order.Should().Be("Before_Action_HandleException_AfterCompleted_"); - result.Should().Be(default); + result.Should().Be(default(int)); } }