aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2024-03-12 17:51:17 -0400
committerBob Arnson <github@bobs.org>2024-03-12 18:58:19 -0400
commit976ac446dcb4aa1bfcbf38e188deb1c3741a2e46 (patch)
tree2f8b0b88b10f116367f187dce920c5a6103f6190 /src/test/burn
parent451525f7cffb3f824a356ccca94c2d683ba2aadf (diff)
downloadwix-976ac446dcb4aa1bfcbf38e188deb1c3741a2e46.tar.gz
wix-976ac446dcb4aa1bfcbf38e188deb1c3741a2e46.tar.bz2
wix-976ac446dcb4aa1bfcbf38e188deb1c3741a2e46.zip
Fix localization collation.
Fixes https://github.com/wixtoolset/issues/issues/8036.
Diffstat (limited to 'src/test/burn')
-rw-r--r--src/test/burn/WixTestTools/PackageVerifier.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test/burn/WixTestTools/PackageVerifier.cs b/src/test/burn/WixTestTools/PackageVerifier.cs
index 4545b9ec..76bc17ab 100644
--- a/src/test/burn/WixTestTools/PackageVerifier.cs
+++ b/src/test/burn/WixTestTools/PackageVerifier.cs
@@ -63,6 +63,12 @@ namespace WixTestTools
63 return row.Value; 63 return row.Value;
64 } 64 }
65 65
66 public string GetControlText(string dialog, string control)
67 {
68 var row = this.WiData.Tables["Control"].Rows.Cast<ControlRow>().Single(r => r.Dialog == dialog && r.Control == control);
69 return row.Text;
70 }
71
66 public bool IsInstalled() 72 public bool IsInstalled()
67 { 73 {
68 var productCode = this.GetProperty("ProductCode"); 74 var productCode = this.GetProperty("ProductCode");