From 91f1fb286c37584eaac76dd7ed873b6ef085c821 Mon Sep 17 00:00:00 2001 From: Madhusudhan Gumbalapura Sudarshan Date: Wed, 15 Jan 2025 11:30:33 -0800 Subject: [PATCH] Fix visual studio editor introduced encoding character issue with the test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaced the extended character 'ë' in the file name `TëstExeInstaller.yaml` with a placeholder character '�', resulting in the new file name `T�stExeInstaller.yaml`. This change addresses potential encoding issues or compatibility concerns with systems that may not support the original extended character. --- src/AppInstallerCLIE2ETests/ValidateCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AppInstallerCLIE2ETests/ValidateCommand.cs b/src/AppInstallerCLIE2ETests/ValidateCommand.cs index 2251764630..9f24b6cda2 100644 --- a/src/AppInstallerCLIE2ETests/ValidateCommand.cs +++ b/src/AppInstallerCLIE2ETests/ValidateCommand.cs @@ -31,7 +31,7 @@ public void ValidateManifest() [Test] public void ValidateManifestWithExtendedCharacter() { - var result = TestCommon.RunAICLICommand("validate", TestCommon.GetTestDataFile("Manifests\\TëstExeInstaller.yaml")); + var result = TestCommon.RunAICLICommand("validate", TestCommon.GetTestDataFile("Manifests\\T�stExeInstaller.yaml")); Assert.AreEqual(Constants.ErrorCode.S_OK, result.ExitCode); Assert.True(result.StdOut.Contains("Manifest validation succeeded.")); }