aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs
index a12ad469..75bbccd2 100644
--- a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs
+++ b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs
@@ -277,9 +277,9 @@ namespace WixToolsetTest.CoreIntegration
277 var intermediate = Intermediate.Load(Path.Combine(baseFolder, @"bin\test.wixpdb")); 277 var intermediate = Intermediate.Load(Path.Combine(baseFolder, @"bin\test.wixpdb"));
278 var section = intermediate.Sections.Single(); 278 var section = intermediate.Sections.Single();
279 279
280 var errors = section.Tuples.OfType<ErrorTuple>().ToDictionary(t => t.Error); 280 var errors = section.Tuples.OfType<ErrorTuple>().ToDictionary(t => t.Id.Id);
281 Assert.Equal("Category 55 Emergency Doomsday Crisis", errors[1234].Message.Trim()); 281 Assert.Equal("Category 55 Emergency Doomsday Crisis", errors["1234"].Message.Trim());
282 Assert.Equal(" ", errors[5678].Message); 282 Assert.Equal(" ", errors["5678"].Message);
283 283
284 var customAction1 = section.Tuples.OfType<CustomActionTuple>().Where(t => t.Id.Id == "CanWeReferenceAnError_YesWeCan").Single(); 284 var customAction1 = section.Tuples.OfType<CustomActionTuple>().Where(t => t.Id.Id == "CanWeReferenceAnError_YesWeCan").Single();
285 Assert.Equal("1234", customAction1.Target); 285 Assert.Equal("1234", customAction1.Target);