diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/PatchFixture.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/PatchFixture.cs b/src/test/WixToolsetTest.CoreIntegration/PatchFixture.cs index 584f86fe..3616bcab 100644 --- a/src/test/WixToolsetTest.CoreIntegration/PatchFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/PatchFixture.cs | |||
@@ -16,7 +16,7 @@ namespace WixToolsetTest.CoreIntegration | |||
16 | { | 16 | { |
17 | private static readonly XNamespace PatchNamespace = "http://www.microsoft.com/msi/patch_applicability.xsd"; | 17 | private static readonly XNamespace PatchNamespace = "http://www.microsoft.com/msi/patch_applicability.xsd"; |
18 | 18 | ||
19 | [Fact(Skip = "Skip until patches have files in them")] | 19 | [Fact] |
20 | public void CanBuildSimplePatch() | 20 | public void CanBuildSimplePatch() |
21 | { | 21 | { |
22 | var folder = TestData.Get(@"TestData\PatchSingle"); | 22 | var folder = TestData.Get(@"TestData\PatchSingle"); |
@@ -45,7 +45,7 @@ namespace WixToolsetTest.CoreIntegration | |||
45 | Assert.True(File.Exists(cab)); | 45 | Assert.True(File.Exists(cab)); |
46 | 46 | ||
47 | var files = Query.GetCabinetFiles(cab); | 47 | var files = Query.GetCabinetFiles(cab); |
48 | Assert.Equal(new[] { "a", "b" }, files.Select(f => f.ArchiveName).ToArray()); // This test may not be quite correct, yet. | 48 | Assert.Equal(new[] { "a.txt", "b.txt" }, files.Select(f => f.Name).ToArray()); |
49 | } | 49 | } |
50 | } | 50 | } |
51 | 51 | ||