diff options
Diffstat (limited to 'src/WixToolset.Core.TestPackage/WixRunnerResult.cs')
-rw-r--r-- | src/WixToolset.Core.TestPackage/WixRunnerResult.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.TestPackage/WixRunnerResult.cs b/src/WixToolset.Core.TestPackage/WixRunnerResult.cs index 45e31c2d..8fc7e14f 100644 --- a/src/WixToolset.Core.TestPackage/WixRunnerResult.cs +++ b/src/WixToolset.Core.TestPackage/WixRunnerResult.cs | |||
@@ -15,7 +15,7 @@ namespace WixToolset.Core.TestPackage | |||
15 | 15 | ||
16 | public WixRunnerResult AssertSuccess() | 16 | public WixRunnerResult AssertSuccess() |
17 | { | 17 | { |
18 | Assert.True(0 == this.ExitCode, $"MSBuild failed unexpectedly. Output:\r\n{String.Join("\r\n", this.Messages.Select(m => m.ToString()).ToArray())}"); | 18 | Assert.True(0 == this.ExitCode, $"\r\n\r\nWixRunner failed with exit code: {this.ExitCode}\r\n Output: {String.Join("\r\n ", this.Messages.Select(m => m.ToString()).ToArray())}\r\n"); |
19 | return this; | 19 | return this; |
20 | } | 20 | } |
21 | } | 21 | } |