aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-11-16 22:13:33 -0500
committerBob Arnson <bob@firegiant.com>2020-11-16 22:19:41 -0500
commit2a8f47e357bfbfe20c962cade4455793e45dae7c (patch)
treeb13563d0df7652d01bd11bfb1d2e7d67ae040c1e /src/test/WixToolsetTest.CoreIntegration/TestData
parentaf854e4c8341cc90fb41c8b5122d4308574e8a9a (diff)
downloadwix-2a8f47e357bfbfe20c962cade4455793e45dae7c.tar.gz
wix-2a8f47e357bfbfe20c962cade4455793e45dae7c.tar.bz2
wix-2a8f47e357bfbfe20c962cade4455793e45dae7c.zip
Support an empty multiString registry value
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/Registry/RegistryValueMultiString.wxs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Registry/RegistryValueMultiString.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Registry/RegistryValueMultiString.wxs
index d5c680ee..c62c571d 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/Registry/RegistryValueMultiString.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Registry/RegistryValueMultiString.wxs
@@ -6,7 +6,9 @@
6 <RegistryValue Root="HKLM" Key="Path\To\Key" Type="multiString" KeyPath="yes"> 6 <RegistryValue Root="HKLM" Key="Path\To\Key" Type="multiString" KeyPath="yes">
7 <MultiString Value="a" /> 7 <MultiString Value="a" />
8 <MultiStringValue Value="b" /> 8 <MultiStringValue Value="b" />
9 <MultiStringValue />
9 <MultiString Value="c" /> 10 <MultiString Value="c" />
11 <MultiStringValue />
10 </RegistryValue> 12 </RegistryValue>
11 <RegistryValue Root="HKLM" Key="Path\To\AnotherKey" Name="Secret" Type="binary" /> 13 <RegistryValue Root="HKLM" Key="Path\To\AnotherKey" Name="Secret" Type="binary" />
12 </Component> 14 </Component>