diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-13 10:22:20 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-13 20:32:16 +1000 |
commit | d7650a48368f15468d721f4d0729bbf60c7c1666 (patch) | |
tree | f50045ba42cd568259fbce5bd67bc773975a5000 /src/test | |
parent | 5a19a39a72d87ed96a6254f65da67b4258fef478 (diff) | |
download | wix-d7650a48368f15468d721f4d0729bbf60c7c1666.tar.gz wix-d7650a48368f15468d721f4d0729bbf60c7c1666.tar.bz2 wix-d7650a48368f15468d721f4d0729bbf60c7c1666.zip |
Fix typo in SummaryInformationType.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs index 44488a8a..5af256c1 100644 --- a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs | |||
@@ -654,7 +654,7 @@ namespace WixToolsetTest.CoreIntegration | |||
654 | var intermediate = Intermediate.Load(Path.Combine(baseFolder, @"bin\test.wixpdb")); | 654 | var intermediate = Intermediate.Load(Path.Combine(baseFolder, @"bin\test.wixpdb")); |
655 | var section = intermediate.Sections.Single(); | 655 | var section = intermediate.Sections.Single(); |
656 | 656 | ||
657 | var platformSummary = section.Tuples.OfType<SummaryInformationTuple>().Single(s => s.PropertyId == SumaryInformationType.PlatformAndLanguage); | 657 | var platformSummary = section.Tuples.OfType<SummaryInformationTuple>().Single(s => s.PropertyId == SummaryInformationType.PlatformAndLanguage); |
658 | Assert.Equal("x64;1033", platformSummary.Value); | 658 | Assert.Equal("x64;1033", platformSummary.Value); |
659 | } | 659 | } |
660 | } | 660 | } |