From 453107d72fa96e7b942ef4698ab10e4bcac91d2e Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Tue, 19 Jan 2021 15:38:47 -0600 Subject: Use new logic for -sw in DecompileCommand. --- src/test/WixToolsetTest.CoreIntegration/CustomTableFixture.cs | 3 ++- src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'src/test') diff --git a/src/test/WixToolsetTest.CoreIntegration/CustomTableFixture.cs b/src/test/WixToolsetTest.CoreIntegration/CustomTableFixture.cs index 3ee88640..f9cd2c70 100644 --- a/src/test/WixToolsetTest.CoreIntegration/CustomTableFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/CustomTableFixture.cs @@ -216,9 +216,10 @@ namespace WixToolsetTest.CoreIntegration result.AssertSuccess(); Assert.True(File.Exists(msiPath)); - result = WixRunner.Execute(false, new[] + result = WixRunner.Execute(new[] { "decompile", msiPath, + "-sw1060", "-intermediateFolder", intermediateFolder, "-o", decompiledWxsPath }); diff --git a/src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs b/src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs index 924337ba..b07f5bda 100644 --- a/src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs @@ -20,7 +20,7 @@ namespace WixToolsetTest.CoreIntegration var intermediateFolder = fs.GetFolder(); var outputPath = Path.Combine(intermediateFolder, @"Actual.wxs"); - var result = WixRunner.Execute(false, new[] + var result = WixRunner.Execute(new[] { "decompile", Path.Combine(folder, msiName), -- cgit v1.2.3-55-g6feb