Skip to content

Commit

Permalink
Reverted a C# 8 feature.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymillerverint committed Nov 27, 2019
1 parent c802a27 commit 80e2b9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
}

Expand Down

0 comments on commit 80e2b9b

Please sign in to comment.