From f42ef2f20000062a310baeccd2358d99fe98959c Mon Sep 17 00:00:00 2001 From: "Zhaopeng Wang (from Dev Box)" Date: Sun, 27 Apr 2025 12:24:12 +0800 Subject: [PATCH] fix pipeline error --- .../fancyzones/UITests-FancyZones/LayoutApplyHotKeyTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/fancyzones/UITests-FancyZones/LayoutApplyHotKeyTests.cs b/src/modules/fancyzones/UITests-FancyZones/LayoutApplyHotKeyTests.cs index 0e0156fd21..dd57088687 100644 --- a/src/modules/fancyzones/UITests-FancyZones/LayoutApplyHotKeyTests.cs +++ b/src/modules/fancyzones/UITests-FancyZones/LayoutApplyHotKeyTests.cs @@ -543,7 +543,7 @@ namespace Microsoft.FancyZones.UITests UITestBase.NativeMethods.ChangeDispalyResolution(width, height); this.AttachPowertoySetting(); this.AttachFancyZonesEditor(); - Session.Find(By.AccessibilityId("Monitors")).Find("Monitor 1").Find(width + " x " + height); + Session.Find(By.AccessibilityId("Monitors")).Find("Monitor 1").Find($"{width} x {height}"); this.CloseFancyZonesEditor(); UITestBase.NativeMethods.ChangeDispalyResolution(nowWidth, nowHeight); }