From b7d67bac0f6616a5ba3594f5d365f0c858424172 Mon Sep 17 00:00:00 2001
From: Brad Wilson <dotnetguy@gmail.com>
Date: Mon, 6 Jan 2025 10:29:54 -0800
Subject: [PATCH] Missed passing an argument

---
 src/xunit.runner.visualstudio/VsTestRunner.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xunit.runner.visualstudio/VsTestRunner.cs b/src/xunit.runner.visualstudio/VsTestRunner.cs
index b5d509d..a66e58e 100644
--- a/src/xunit.runner.visualstudio/VsTestRunner.cs
+++ b/src/xunit.runner.visualstudio/VsTestRunner.cs
@@ -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;