Skip to content

Commit

Permalink
[TouchRunner] do not use FinallyDelegate in Runner, because it requir…
Browse files Browse the repository at this point in the history
…es remoting API to be available (#49)
  • Loading branch information
lewurm authored and spouliot committed Feb 20, 2018
1 parent b5b227e commit 4ac4e32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NUnitLite/TouchRunner/TouchRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ public TestResult Run (Test test)
TestExecutionContext current = TestExecutionContext.CurrentContext;
current.WorkDirectory = Environment.CurrentDirectory;
current.Listener = this;
WorkItem wi = test.CreateWorkItem (filter, new FinallyDelegate ());
WorkItem wi = test.CreateWorkItem (filter, null);
wi.Execute (current);
Result = wi.Result;
return Result;
Expand Down

0 comments on commit 4ac4e32

Please sign in to comment.