From d3b12de2f22eb552e073f0c949833a7ef4d4f13c Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Mon, 7 Oct 2019 13:21:29 -0700 Subject: Fix AppSearch related building --- src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/test/WixToolsetTest.CoreIntegration') diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs index 826d8985..6ff4e237 100644 --- a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs @@ -9,7 +9,7 @@ namespace WixToolsetTest.CoreIntegration public class MsiQueryFixture { - [Fact(Skip = "Test demonstrates failure")] + [Fact] public void PopulatesAppSearchTablesFromComponentSearch() { var folder = TestData.Get(@"TestData"); @@ -43,7 +43,7 @@ namespace WixToolsetTest.CoreIntegration } } - [Fact(Skip = "Test demonstrates failure")] + [Fact] public void PopulatesAppSearchTablesFromDirectorySearch() { var folder = TestData.Get(@"TestData"); @@ -71,13 +71,13 @@ namespace WixToolsetTest.CoreIntegration var results = Query.QueryDatabase(msiPath, new[] { "AppSearch", "DrLocator" }); Assert.Equal(new[] { - "AppSearch:SAMPLECOMPFOUND\tSampleCompSearch", + "AppSearch:SAMPLEDIRFOUND\tSampleDirSearch", "DrLocator:SampleDirSearch\t\tC:\\SampleDir\t", }, results); } } - [Fact(Skip = "Test demonstrates failure")] + [Fact] public void PopulatesAppSearchTablesFromFileSearch() { var folder = TestData.Get(@"TestData"); @@ -112,7 +112,7 @@ namespace WixToolsetTest.CoreIntegration } } - [Fact(Skip = "Test demonstrates failure")] + [Fact] public void PopulatesAppSearchTablesFromRegistrySearch() { var folder = TestData.Get(@"TestData"); -- cgit v1.2.3-55-g6feb