aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Dependency/test
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-12-12 16:54:43 -0500
committerBob Arnson <github@bobs.org>2021-12-17 09:03:18 -0500
commit3542ddd0b007673f3fc338bd53c3b807c3ed7308 (patch)
tree6fe632b659587011586788d0968d9687f3b28535 /src/ext/Dependency/test
parentac27477c7ec5697c0b3c9a5c809f9eee118dd7b6 (diff)
downloadwix-3542ddd0b007673f3fc338bd53c3b807c3ed7308.tar.gz
wix-3542ddd0b007673f3fc338bd53c3b807c3ed7308.tar.bz2
wix-3542ddd0b007673f3fc338bd53c3b807c3ed7308.zip
Fix ids for DependencyExtension.
Diffstat (limited to 'src/ext/Dependency/test')
-rw-r--r--src/ext/Dependency/test/WixToolsetTest.Dependency/DependencyExtensionFixture.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ext/Dependency/test/WixToolsetTest.Dependency/DependencyExtensionFixture.cs b/src/ext/Dependency/test/WixToolsetTest.Dependency/DependencyExtensionFixture.cs
index 708ae658..bce128e8 100644
--- a/src/ext/Dependency/test/WixToolsetTest.Dependency/DependencyExtensionFixture.cs
+++ b/src/ext/Dependency/test/WixToolsetTest.Dependency/DependencyExtensionFixture.cs
@@ -17,15 +17,15 @@ namespace WixToolsetTest.Dependency
17 var folder = TestData.Get(@"TestData\UsingProvides"); 17 var folder = TestData.Get(@"TestData\UsingProvides");
18 var build = new Builder(folder, typeof(DependencyExtensionFactory), new[] { folder }); 18 var build = new Builder(folder, typeof(DependencyExtensionFactory), new[] { folder });
19 19
20 var results = build.BuildAndQuery(Build, "CustomAction", "WixDependencyProvider") 20 var results = build.BuildAndQuery(Build, "CustomAction", "Wix4DependencyProvider")
21 .Select(r => Regex.Replace(r, "{[^}]*}", "{*}")) 21 .Select(r => Regex.Replace(r, "{[^}]*}", "{*}"))
22 .ToArray(); 22 .ToArray();
23 WixAssert.CompareLineByLine(new[] 23 WixAssert.CompareLineByLine(new[]
24 { 24 {
25 "CustomAction:Wix4DependencyCheck_X86\t1\tDependencyCA_X86\tWixDependencyCheck\t", 25 "CustomAction:Wix4DependencyCheck_X86\t1\tDependencyCA_X86\tWixDependencyCheck\t",
26 "CustomAction:Wix4DependencyRequire_X86\t1\tDependencyCA_X86\tWixDependencyRequire\t", 26 "CustomAction:Wix4DependencyRequire_X86\t1\tDependencyCA_X86\tWixDependencyRequire\t",
27 "WixDependencyProvider:dep74OfIcniaqxA7EprRGBw4Oyy3r8\tfilF5_pLhBuF5b4N9XEo52g_hUM5Lo\tUsingProvides\t\t\t", 27 "Wix4DependencyProvider:dep74OfIcniaqxA7EprRGBw4Oyy3r8\tfilF5_pLhBuF5b4N9XEo52g_hUM5Lo\tUsingProvides\t\t\t",
28 "WixDependencyProvider:depTpv28q7slcxvXPWmU4Z0GfbiI.4\tfilF5_pLhBuF5b4N9XEo52g_hUM5Lo\t{*}\t\t\t", 28 "Wix4DependencyProvider:depTpv28q7slcxvXPWmU4Z0GfbiI.4\tfilF5_pLhBuF5b4N9XEo52g_hUM5Lo\t{*}\t\t\t",
29 }, results); 29 }, results);
30 } 30 }
31 31