diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-06-25 15:44:40 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-06-25 15:52:31 -0700 |
| commit | 45fa3b78c4069a6046c172fb3e18c878a58f4e69 (patch) | |
| tree | a99601864bc5fb9090edcf939841560587081dac /src/test/WixToolsetTest.BuildTasks | |
| parent | 37440a2e80c30cdce283bc570d92afe94430a345 (diff) | |
| download | wix-45fa3b78c4069a6046c172fb3e18c878a58f4e69.tar.gz wix-45fa3b78c4069a6046c172fb3e18c878a58f4e69.tar.bz2 wix-45fa3b78c4069a6046c172fb3e18c878a58f4e69.zip | |
The Great Tuple to Symbol Rename (tm)
Diffstat (limited to 'src/test/WixToolsetTest.BuildTasks')
| -rw-r--r-- | src/test/WixToolsetTest.BuildTasks/WixBuildTaskFixture.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/WixToolsetTest.BuildTasks/WixBuildTaskFixture.cs b/src/test/WixToolsetTest.BuildTasks/WixBuildTaskFixture.cs index cd41f16e..87382cb8 100644 --- a/src/test/WixToolsetTest.BuildTasks/WixBuildTaskFixture.cs +++ b/src/test/WixToolsetTest.BuildTasks/WixBuildTaskFixture.cs | |||
| @@ -8,7 +8,7 @@ namespace WixToolsetTest.BuildTasks | |||
| 8 | using WixBuildTools.TestSupport; | 8 | using WixBuildTools.TestSupport; |
| 9 | using WixToolset.BuildTasks; | 9 | using WixToolset.BuildTasks; |
| 10 | using WixToolset.Data; | 10 | using WixToolset.Data; |
| 11 | using WixToolset.Data.Tuples; | 11 | using WixToolset.Data.Symbols; |
| 12 | using Xunit; | 12 | using Xunit; |
| 13 | 13 | ||
| 14 | public class WixBuildTaskFixture | 14 | public class WixBuildTaskFixture |
| @@ -57,9 +57,9 @@ namespace WixToolsetTest.BuildTasks | |||
| 57 | var intermediate = Intermediate.Load(pdbPath); | 57 | var intermediate = Intermediate.Load(pdbPath); |
| 58 | var section = intermediate.Sections.Single(); | 58 | var section = intermediate.Sections.Single(); |
| 59 | 59 | ||
| 60 | var fileTuple = section.Tuples.OfType<FileTuple>().Single(); | 60 | var fileSymbol = section.Symbols.OfType<FileSymbol>().Single(); |
| 61 | Assert.Equal(Path.Combine(folder, @"data\test.txt"), fileTuple[FileTupleFields.Source].AsPath().Path); | 61 | Assert.Equal(Path.Combine(folder, @"data\test.txt"), fileSymbol[FileSymbolFields.Source].AsPath().Path); |
| 62 | Assert.Equal(@"test.txt", fileTuple[FileTupleFields.Source].PreviousValue.AsPath().Path); | 62 | Assert.Equal(@"test.txt", fileSymbol[FileSymbolFields.Source].PreviousValue.AsPath().Path); |
| 63 | } | 63 | } |
| 64 | } | 64 | } |
| 65 | } | 65 | } |
