Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit 4ac4e32

Browse files
lewurmspouliot
authored andcommitted
[TouchRunner] do not use FinallyDelegate in Runner, because it requires remoting API to be available (#49)
1 parent b5b227e commit 4ac4e32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NUnitLite/TouchRunner/TouchRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ public TestResult Run (Test test)
445445
TestExecutionContext current = TestExecutionContext.CurrentContext;
446446
current.WorkDirectory = Environment.CurrentDirectory;
447447
current.Listener = this;
448-
WorkItem wi = test.CreateWorkItem (filter, new FinallyDelegate ());
448+
WorkItem wi = test.CreateWorkItem (filter, null);
449449
wi.Execute (current);
450450
Result = wi.Result;
451451
return Result;

0 commit comments

Comments
 (0)