diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-10-25 01:41:25 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2019-10-25 01:41:25 -0700 |
| commit | 98bdcfac8bd4f699bc6865abd283f710943e77bc (patch) | |
| tree | 1823623e090e5b79d369699e0481ea4dd92b3568 /src/test/WixToolsetTest.CoreIntegration/LinkerFixture.cs | |
| parent | 9c714a8f1baa6e0130e5cd00cbdca649cebaf6a5 (diff) | |
| download | wix-98bdcfac8bd4f699bc6865abd283f710943e77bc.tar.gz wix-98bdcfac8bd4f699bc6865abd283f710943e77bc.tar.bz2 wix-98bdcfac8bd4f699bc6865abd283f710943e77bc.zip | |
Remove explicit intermediate file provided for testing
We have a real WixOutput now that officially provides all the necessary
information, so use that instead.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/LinkerFixture.cs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/LinkerFixture.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/LinkerFixture.cs b/src/test/WixToolsetTest.CoreIntegration/LinkerFixture.cs index 80a6d1dd..da1a374f 100644 --- a/src/test/WixToolsetTest.CoreIntegration/LinkerFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/LinkerFixture.cs | |||
| @@ -40,7 +40,7 @@ namespace WixToolsetTest.CoreIntegration | |||
| 40 | Assert.True(File.Exists(Path.Combine(baseFolder, @"bin\test.wixpdb"))); | 40 | Assert.True(File.Exists(Path.Combine(baseFolder, @"bin\test.wixpdb"))); |
| 41 | Assert.True(File.Exists(Path.Combine(baseFolder, @"bin\MsiPackage\test.txt"))); | 41 | Assert.True(File.Exists(Path.Combine(baseFolder, @"bin\MsiPackage\test.txt"))); |
| 42 | 42 | ||
| 43 | var intermediate = Intermediate.Load(Path.Combine(intermediateFolder, @"test.wir")); | 43 | var intermediate = Intermediate.Load(Path.Combine(baseFolder, @"bin\test.wixpdb")); |
| 44 | var section = intermediate.Sections.Single(); | 44 | var section = intermediate.Sections.Single(); |
| 45 | 45 | ||
| 46 | var actions = section.Tuples.OfType<WixActionTuple>().Where(wat => wat.Action.StartsWith("Set")).ToList(); | 46 | var actions = section.Tuples.OfType<WixActionTuple>().Where(wat => wat.Action.StartsWith("Set")).ToList(); |
