Skip to content

Commit

Permalink
Delete dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef1313 committed Feb 3, 2025
1 parent 4dba0ee commit 9b6c18e
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,7 @@ protected override Task SynchronizedRunTestsAsync(VSTestRunTestExecutionRequest
ITestExecutor executor = new NUnit3TestExecutor();
using (cancellationToken.Register(executor.Cancel))
{
if (request.VSTestFilter.TestCases is { } testCases)
{
executor.RunTests(testCases, request.RunContext, request.FrameworkHandle);
}
else
{
executor.RunTests(request.AssemblyPaths, request.RunContext, request.FrameworkHandle);
}
executor.RunTests(request.AssemblyPaths, request.RunContext, request.FrameworkHandle);
}

return Task.CompletedTask;
Expand Down

0 comments on commit 9b6c18e

Please sign in to comment.