From b87be7263d5786995b8ab897176046845bebd80b Mon Sep 17 00:00:00 2001 From: "Dustin L. Howett" Date: Thu, 30 Oct 2025 22:33:44 -0500 Subject: [PATCH] Tests: do not use *relative drive letter* (#43135) Since we switched to running the build on C:\, this test started failing. C: means "current directory on the C drive"! --- .../BookmarkResolverTests.Common.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/cmdpal/Tests/Microsoft.CmdPal.Ext.Bookmarks.UnitTests/BookmarkResolverTests.Common.cs b/src/modules/cmdpal/Tests/Microsoft.CmdPal.Ext.Bookmarks.UnitTests/BookmarkResolverTests.Common.cs index 2fa7b81b08..9be4a187e8 100644 --- a/src/modules/cmdpal/Tests/Microsoft.CmdPal.Ext.Bookmarks.UnitTests/BookmarkResolverTests.Common.cs +++ b/src/modules/cmdpal/Tests/Microsoft.CmdPal.Ext.Bookmarks.UnitTests/BookmarkResolverTests.Common.cs @@ -110,7 +110,7 @@ public partial class BookmarkResolverTests [ new PlaceholderClassificationCase( Name: "Drive", - Input: "C:", + Input: "C:\\.", ExpectSuccess: true, ExpectedKind: CommandKind.Directory, ExpectedTarget: "C:\\",