diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-03-23 14:00:43 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-03-23 14:04:13 -0700 |
| commit | 26442d4177bd6e108f2cf4cc2fb2599e624ff6c4 (patch) | |
| tree | baf551bad4acc1644339b27f3060def1b4e9217b /src/test/WixToolsetTest.CoreIntegration | |
| parent | 8a3ce82d689e16424620e3b52161f19771d19d1d (diff) | |
| download | wix-26442d4177bd6e108f2cf4cc2fb2599e624ff6c4.tar.gz wix-26442d4177bd6e108f2cf4cc2fb2599e624ff6c4.tar.bz2 wix-26442d4177bd6e108f2cf4cc2fb2599e624ff6c4.zip | |
Fix dependency providers in a Bundle chain
Fixes wixtoolset/issues#6388
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/DependencyExtensionFixture.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/DependencyExtensionFixture.cs b/src/test/WixToolsetTest.CoreIntegration/DependencyExtensionFixture.cs index 5d61828f..840b411e 100644 --- a/src/test/WixToolsetTest.CoreIntegration/DependencyExtensionFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/DependencyExtensionFixture.cs | |||
| @@ -12,7 +12,7 @@ namespace WixToolsetTest.CoreIntegration | |||
| 12 | 12 | ||
| 13 | public class DependencyExtensionFixture | 13 | public class DependencyExtensionFixture |
| 14 | { | 14 | { |
| 15 | [Fact(Skip = "https://github.com/wixtoolset/issues/issues/6388")] | 15 | [Fact] |
| 16 | public void CanBuildBundleUsingExePackageWithProvides() | 16 | public void CanBuildBundleUsingExePackageWithProvides() |
| 17 | { | 17 | { |
| 18 | var folder = TestData.Get(@"TestData"); | 18 | var folder = TestData.Get(@"TestData"); |
| @@ -50,7 +50,7 @@ namespace WixToolsetTest.CoreIntegration | |||
| 50 | .ToArray(); | 50 | .ToArray(); |
| 51 | WixAssert.CompareLineByLine(new string[] | 51 | WixAssert.CompareLineByLine(new string[] |
| 52 | { | 52 | { |
| 53 | "<Provides Key='DependencyTests_ExeA,v1.0' Version='1.0.0.0' />", | 53 | "<Provides Key='DependencyTests_ExeA,v1.0' Version='1.0.0.0' DisplayName='Windows Installer XML Toolset' />", |
| 54 | }, provides); | 54 | }, provides); |
| 55 | } | 55 | } |
| 56 | } | 56 | } |
| @@ -106,7 +106,7 @@ namespace WixToolsetTest.CoreIntegration | |||
| 106 | .ToArray(); | 106 | .ToArray(); |
| 107 | WixAssert.CompareLineByLine(new string[] | 107 | WixAssert.CompareLineByLine(new string[] |
| 108 | { | 108 | { |
| 109 | "<Provides Key='UsingProvides' Imported='yes' />", | 109 | "<Provides Key='UsingProvides' Version='1.0.0.0' DisplayName='MsiPackage' Imported='yes' />", |
| 110 | "<Provides Key='{A81D50F9-B696-4F3D-ABE0-E64D61590E5F}' Version='1.0.0.0' DisplayName='MsiPackage' />", | 110 | "<Provides Key='{A81D50F9-B696-4F3D-ABE0-E64D61590E5F}' Version='1.0.0.0' DisplayName='MsiPackage' />", |
| 111 | }, provides); | 111 | }, provides); |
| 112 | } | 112 | } |
