diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-10-26 13:40:49 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2019-10-26 13:56:11 -0700 |
| commit | 6eab6255f832007886c4b01861dc39d5582177ef (patch) | |
| tree | cb3e11ad38046ed74eede94126c9923e4dfc287b /src/test/WixToolsetTest.CoreIntegration | |
| parent | f01d284101e95d490497062c2dc9065423d0cf37 (diff) | |
| download | wix-6eab6255f832007886c4b01861dc39d5582177ef.tar.gz wix-6eab6255f832007886c4b01861dc39d5582177ef.tar.bz2 wix-6eab6255f832007886c4b01861dc39d5582177ef.zip | |
Update to WindowsInstallerData rename from Data
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration')
| -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 | } |
