aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/WixToolset.Core/Compiler.cs5
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs2
2 files changed, 3 insertions, 4 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs
index 974f3188..ae99b673 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -548,10 +548,9 @@ namespace WixToolset.Core
548 548
549 if (!this.Core.EncounteredError) 549 if (!this.Core.EncounteredError)
550 { 550 {
551 var id = new Identifier(AccessModifier.Public, appId); 551 var tuple = new AppIdTuple(sourceLineNumbers, new Identifier(AccessModifier.Public, appId))
552
553 var tuple = new AppIdTuple(sourceLineNumbers, id)
554 { 552 {
553 AppId = appId,
555 RemoteServerName = remoteServerName, 554 RemoteServerName = remoteServerName,
556 LocalService = localService, 555 LocalService = localService,
557 ServiceParameters = serviceParameters, 556 ServiceParameters = serviceParameters,
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs
index fa14f06c..7f06eea6 100644
--- a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs
+++ b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs
@@ -9,7 +9,7 @@ namespace WixToolsetTest.CoreIntegration
9 9
10 public class MsiQueryFixture 10 public class MsiQueryFixture
11 { 11 {
12 [Fact(Skip = "Test demonstrates failure")] 12 [Fact]
13 public void PopulatesAppIdTableWhenAdvertised() 13 public void PopulatesAppIdTableWhenAdvertised()
14 { 14 {
15 var folder = TestData.Get(@"TestData"); 15 var folder = TestData.Get(@"TestData");