Fix ServiceInstall test
Rob Mensching committed
Oct 7, 2019 at 14:41 UTC
32ac87b2bf1a3a5bddb0630b65e52d117e5e2323
2 files changed
+2
-2
src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs
+1
-1
@@ -513,7 +513,7 @@ namespace WixToolsetTest.CoreIntegration
513
}
514
}
515
516
- [Fact(Skip = "Test demonstrates failure")]
516
+ [Fact]
517
public void PopulatesServiceInstallTable()
518
{
519
var folder = TestData.Get(@"TestData");
src/test/WixToolsetTest.CoreIntegration/TestData/ServiceInstall/OwnProcess.wxs
+1
-1
@@ -3,7 +3,7 @@
3
<Fragment>
4
<ComponentGroup Id="ProductComponents">
5
<Component Directory="INSTALLFOLDER">
6
- <File Source="test.txt" />
6
+ <File Id="test.txt" Source="test.txt" />
7
<ServiceInstall Name="SampleService" ErrorControl="ignore" Start="disabled" Type="ownProcess"></ServiceInstall>
8
</Component>
9
</ComponentGroup>