From d529525a1e331f3ef9ec2707791c99bd78fdd82f Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sat, 30 May 2020 14:53:05 -0700 Subject: Basic patching support --- src/test/WixToolsetTest.CoreIntegration/PatchFixture.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/test/WixToolsetTest.CoreIntegration/PatchFixture.cs') 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 { private static readonly XNamespace PatchNamespace = "http://www.microsoft.com/msi/patch_applicability.xsd"; - [Fact(Skip = "Skip until patches have files in them")] + [Fact] public void CanBuildSimplePatch() { var folder = TestData.Get(@"TestData\PatchSingle"); @@ -45,7 +45,7 @@ namespace WixToolsetTest.CoreIntegration Assert.True(File.Exists(cab)); var files = Query.GetCabinetFiles(cab); - Assert.Equal(new[] { "a", "b" }, files.Select(f => f.ArchiveName).ToArray()); // This test may not be quite correct, yet. + Assert.Equal(new[] { "a.txt", "b.txt" }, files.Select(f => f.Name).ToArray()); } } -- cgit v1.2.3-55-g6feb