diff options
| author | Bob Arnson <bob@firegiant.com> | 2019-05-14 14:19:34 -0400 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2019-05-14 16:07:39 -0400 |
| commit | 44fb31d655bc5860d45e3acd4cd0cbfaaf5f12eb (patch) | |
| tree | c522b10288ceacf89ae3febc692ba92f27a6b2d7 /src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs | |
| parent | 83b04241472fdc93b0a3a7511479a1182ad5f4c0 (diff) | |
| download | wix-44fb31d655bc5860d45e3acd4cd0cbfaaf5f12eb.tar.gz wix-44fb31d655bc5860d45e3acd4cd0cbfaaf5f12eb.tar.bz2 wix-44fb31d655bc5860d45e3acd4cd0cbfaaf5f12eb.zip | |
Add Component/@Shared and fix UninstallWhenSuperseded
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs b/src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs index 532f158d..07044a1f 100644 --- a/src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/WixlibFixture.cs | |||
| @@ -50,7 +50,7 @@ namespace WixToolsetTest.CoreIntegration | |||
| 50 | var intermediate = Intermediate.Load(Path.Combine(baseFolder, @"obj\test.wir")); | 50 | var intermediate = Intermediate.Load(Path.Combine(baseFolder, @"obj\test.wir")); |
| 51 | var section = intermediate.Sections.Single(); | 51 | var section = intermediate.Sections.Single(); |
| 52 | 52 | ||
| 53 | var wixFile = section.Tuples.OfType<WixFileTuple>().Single(); | 53 | var wixFile = section.Tuples.OfType<WixFileTuple>().First(); |
| 54 | Assert.Equal(Path.Combine(folder, @"data\test.txt"), wixFile[WixFileTupleFields.Source].AsPath().Path); | 54 | Assert.Equal(Path.Combine(folder, @"data\test.txt"), wixFile[WixFileTupleFields.Source].AsPath().Path); |
| 55 | Assert.Equal(@"test.txt", wixFile[WixFileTupleFields.Source].PreviousValue.AsPath().Path); | 55 | Assert.Equal(@"test.txt", wixFile[WixFileTupleFields.Source].PreviousValue.AsPath().Path); |
| 56 | } | 56 | } |
