Skip to content

Commit

Permalink
Fix visual studio editor introduced encoding character issue with the…
Browse files Browse the repository at this point in the history
… test

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.
  • Loading branch information
Madhusudhan-MSFT committed Jan 15, 2025
1 parent 8607fbb commit 91f1fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AppInstallerCLIE2ETests/ValidateCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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."));
}
Expand Down

0 comments on commit 91f1fb2

Please sign in to comment.