Update expected message in CanLoadFDDx86EarliestCoreMBA.
Sean Hall committed
Aug 3, 2022 at 10:31 UTC
fa54ae44e565d4e8d273627f2fc73e670febeea2
1 file changed
+2
-1
src/ext/Bal/test/WixToolsetTest.ManagedHost/DncHostFixture.cs
+2
-1
@@ -46,7 +46,8 @@ namespace WixToolsetTest.ManagedHost
46
var result = testEngine.RunShutdownEngine(bundleFile, baseFolder, x86: true);
47
var resultOutput = result.Output.ToArray();
48
49
- if (resultOutput.Length > 0 && resultOutput[0] == "error from hostfxr: It was not possible to find any compatible framework version")
49
+ if (resultOutput.Length > 0 && (resultOutput[0] == "error from hostfxr: It was not possible to find any compatible framework version" ||
50
+ resultOutput[0] == "error from hostfxr: You must install or update .NET to run this application."))
51
{
52
WixAssert.Skip(String.Join(Environment.NewLine, resultOutput));
53
}