Skip to content
This repository has been archived by the owner on Dec 14, 2018. It is now read-only.

Commit

Permalink
Remove un-needed ToString calls
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanbrandenburg committed Jun 9, 2016
1 parent 6181ef7 commit 7262434
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ public async Task InvokeAction_InvokesExceptionFilter_ShortCircuit_ExceptionHand
.Setup(f => f.OnException(It.IsAny<ExceptionContext>()))
.Callback<ExceptionContext>(context =>
{
filter2.ToString();
context.ExceptionHandled = true;
})
.Verifiable();
Expand Down Expand Up @@ -237,7 +236,6 @@ public async Task InvokeAction_InvokesAsyncExceptionFilter_ShortCircuit_Exceptio
.Setup(f => f.OnExceptionAsync(It.IsAny<ExceptionContext>()))
.Callback<ExceptionContext>(context =>
{
filter2.ToString();
context.ExceptionHandled = true;
})
.Returns<ExceptionContext>((context) => Task.FromResult(true))
Expand Down

0 comments on commit 7262434

Please sign in to comment.