From 78e76136df02c9a9d774811e7d645be8b4b354c8 Mon Sep 17 00:00:00 2001 From: Madhusudhan Gumbalapura Sudarshan Date: Mon, 3 Jun 2024 23:02:44 -0700 Subject: [PATCH] Fix: To address MSI repair test failures, AppInstallerTest.TestMsiInstaller will be uninstalled as part of test setup to avoid interference. --- src/AppInstallerCLIE2ETests/RepairCommand.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/AppInstallerCLIE2ETests/RepairCommand.cs b/src/AppInstallerCLIE2ETests/RepairCommand.cs index 354737f093..a86c7af821 100644 --- a/src/AppInstallerCLIE2ETests/RepairCommand.cs +++ b/src/AppInstallerCLIE2ETests/RepairCommand.cs @@ -21,6 +21,8 @@ public class RepairCommand : BaseCommand [OneTimeSetUp] public void OneTimeSetup() { + // Try clean up AppInstallerTest.TestMsiInstaller for failure cases where cleanup is not successful + TestCommon.RunAICLICommand("uninstall", "AppInstallerTest.TestMsiInstaller"); } ///