aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/CustomTableFixture.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/CustomTableFixture.cs')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/CustomTableFixture.cs3
1 files changed, 2 insertions, 1 deletions
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
216 result.AssertSuccess(); 216 result.AssertSuccess();
217 Assert.True(File.Exists(msiPath)); 217 Assert.True(File.Exists(msiPath));
218 218
219 result = WixRunner.Execute(false, new[] 219 result = WixRunner.Execute(new[]
220 { 220 {
221 "decompile", msiPath, 221 "decompile", msiPath,
222 "-sw1060",
222 "-intermediateFolder", intermediateFolder, 223 "-intermediateFolder", intermediateFolder,
223 "-o", decompiledWxsPath 224 "-o", decompiledWxsPath
224 }); 225 });