diff options
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs')
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs index 1be60587..21b6e9ce 100644 --- a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs | |||
@@ -312,7 +312,7 @@ namespace WixToolsetTest.CoreIntegration | |||
312 | var pdbPath = Path.Combine(intermediateFolder, @"bin\test.wixpdb"); | 312 | var pdbPath = Path.Combine(intermediateFolder, @"bin\test.wixpdb"); |
313 | Assert.True(File.Exists(pdbPath)); | 313 | Assert.True(File.Exists(pdbPath)); |
314 | 314 | ||
315 | var output = Output.Load(pdbPath, suppressVersionCheck: true); | 315 | var output = WindowsInstallerData.Load(pdbPath, suppressVersionCheck: true); |
316 | Assert.NotNull(output); | 316 | Assert.NotNull(output); |
317 | } | 317 | } |
318 | } | 318 | } |
@@ -700,7 +700,7 @@ namespace WixToolsetTest.CoreIntegration | |||
700 | 700 | ||
701 | result.AssertSuccess(); | 701 | result.AssertSuccess(); |
702 | 702 | ||
703 | var output = Output.Load(Path.Combine(baseFolder, @"bin\test.wixpdb"), false); | 703 | var output = WindowsInstallerData.Load(Path.Combine(baseFolder, @"bin\test.wixpdb"), false); |
704 | var caRows = output.Tables["CustomAction"].Rows.Single(); | 704 | var caRows = output.Tables["CustomAction"].Rows.Single(); |
705 | Assert.Equal("SetINSTALLLOCATION", caRows.FieldAsString(0)); | 705 | Assert.Equal("SetINSTALLLOCATION", caRows.FieldAsString(0)); |
706 | Assert.Equal("51", caRows.FieldAsString(1)); | 706 | Assert.Equal("51", caRows.FieldAsString(1)); |
@@ -776,7 +776,7 @@ namespace WixToolsetTest.CoreIntegration | |||
776 | 776 | ||
777 | result.AssertSuccess(); | 777 | result.AssertSuccess(); |
778 | 778 | ||
779 | var output = Output.Load(Path.Combine(intermediateFolder, @"bin\test.wixpdb"), false); | 779 | var output = WindowsInstallerData.Load(Path.Combine(intermediateFolder, @"bin\test.wixpdb"), false); |
780 | Assert.NotEmpty(output.SubStorages); | 780 | Assert.NotEmpty(output.SubStorages); |
781 | } | 781 | } |
782 | } | 782 | } |