From c08f98346ad14f2e20a1be4af678aa90c7949e3e Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Tue, 7 Jul 2026 14:11:07 -0400 Subject: [PATCH] fix(integration-tests): update EventStreamService construction to 3-param ctor WorkerLiveMxAccessSmokeTests built EventStreamService with the old 6-arg signature (mapper, dashboard broadcaster, logger) that predates the SessionEventDistributor refactor; the current ctor takes only (sessionManager, options, metrics). Pre-existing compile break on this branch, unrelated to the doc sweep. NonWindows.slnx now builds clean. --- .../WorkerLiveMxAccessSmokeTests.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/ZB.MOM.WW.MxGateway.IntegrationTests/WorkerLiveMxAccessSmokeTests.cs b/src/ZB.MOM.WW.MxGateway.IntegrationTests/WorkerLiveMxAccessSmokeTests.cs index b22b1dd..02bfee7 100644 --- a/src/ZB.MOM.WW.MxGateway.IntegrationTests/WorkerLiveMxAccessSmokeTests.cs +++ b/src/ZB.MOM.WW.MxGateway.IntegrationTests/WorkerLiveMxAccessSmokeTests.cs @@ -1580,10 +1580,7 @@ public sealed class WorkerLiveMxAccessSmokeTests(ITestOutputHelper output) EventStreamService eventStreamService = new( sessionManager, options, - mapper, - _metrics, - NullDashboardEventBroadcaster.Instance, - _loggerFactory.CreateLogger()); + _metrics); Service = new MxAccessGatewayService( sessionManager,