From e8f279a7ee047012e3f496a3f65a629f3037fa26 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 27 Oct 2025 05:11:39 +0000 Subject: [PATCH] Address code review feedback: clarify comments and formatting Co-authored-by: tig <585482+tig@users.noreply.github.com> --- Tests/UnitTests/ConsoleDrivers/FakeDriverTests.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tests/UnitTests/ConsoleDrivers/FakeDriverTests.cs b/Tests/UnitTests/ConsoleDrivers/FakeDriverTests.cs index bfa63bf99..29f1132c1 100644 --- a/Tests/UnitTests/ConsoleDrivers/FakeDriverTests.cs +++ b/Tests/UnitTests/ConsoleDrivers/FakeDriverTests.cs @@ -441,7 +441,7 @@ public class FakeDriverTests (ITestOutputHelper output) bool eventFired = false; Size? newSize = null; - // Subscribe to SizeChanged which forwards to ScreenChanged in ConsoleDriver + // Subscribe to deprecated SizeChanged event (which forwards to the new ScreenChanged event) Application.Driver!.SizeChanged += (sender, args) => { eventFired = true; @@ -473,8 +473,8 @@ public class FakeDriverTests (ITestOutputHelper output) AutoInitShutdownAttribute.RunIteration (); // Act - Perform multiple resizes - var sizes = new[] - { + var sizes = new[] + { new Size (100, 30), new Size (80, 25), new Size (120, 40),