Skip to content

Commit

Permalink
Missed passing an argument
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Jan 6, 2025
1 parent 8cbe1c3 commit b7d67ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xunit.runner.visualstudio/VsTestRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ async Task RunTestsInAssembly(
testProcessLauncher = new DebuggerProcessLauncher(frameworkHandle2);

await using var sourceInformationProvider = new VisualStudioSourceInformationProvider(assemblyFileName, diagnosticSink);
await using var controller = XunitFrontController.Create(runInfo.Assembly, null, diagnosticSink, testProcessLauncher);
await using var controller = XunitFrontController.Create(runInfo.Assembly, sourceInformationProvider, diagnosticSink, testProcessLauncher);
if (controller is null)
return;

Expand Down

0 comments on commit b7d67ba

Please sign in to comment.