diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-08-03 10:31:20 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-08-03 11:28:00 -0500 |
commit | fa54ae44e565d4e8d273627f2fc73e670febeea2 (patch) | |
tree | deae12a2683e1ddeacea6ce618bba6b0e2e61980 | |
parent | 28c8abfda013d6aa568fde8b26da65522748d376 (diff) | |
download | wix-fa54ae44e565d4e8d273627f2fc73e670febeea2.tar.gz wix-fa54ae44e565d4e8d273627f2fc73e670febeea2.tar.bz2 wix-fa54ae44e565d4e8d273627f2fc73e670febeea2.zip |
Update expected message in CanLoadFDDx86EarliestCoreMBA.
-rw-r--r-- | src/ext/Bal/test/WixToolsetTest.ManagedHost/DncHostFixture.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ext/Bal/test/WixToolsetTest.ManagedHost/DncHostFixture.cs b/src/ext/Bal/test/WixToolsetTest.ManagedHost/DncHostFixture.cs index 3aa2bec7..02059faa 100644 --- a/src/ext/Bal/test/WixToolsetTest.ManagedHost/DncHostFixture.cs +++ b/src/ext/Bal/test/WixToolsetTest.ManagedHost/DncHostFixture.cs | |||
@@ -46,7 +46,8 @@ namespace WixToolsetTest.ManagedHost | |||
46 | var result = testEngine.RunShutdownEngine(bundleFile, baseFolder, x86: true); | 46 | var result = testEngine.RunShutdownEngine(bundleFile, baseFolder, x86: true); |
47 | var resultOutput = result.Output.ToArray(); | 47 | var resultOutput = result.Output.ToArray(); |
48 | 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.")) | ||
50 | { | 51 | { |
51 | WixAssert.Skip(String.Join(Environment.NewLine, resultOutput)); | 52 | WixAssert.Skip(String.Join(Environment.NewLine, resultOutput)); |
52 | } | 53 | } |