diff options
author | Rob Mensching <rob@firegiant.com> | 2020-06-17 12:11:17 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-06-23 02:10:31 -0700 |
commit | 099a5bc83bfde2a713a94d47e613dba16fdcee2a (patch) | |
tree | bb921277cffe5424d3e6166547b3284d76b20830 /src/test | |
parent | 457c144720964a7f50b1d184e6b19faa930e970e (diff) | |
download | wix-099a5bc83bfde2a713a94d47e613dba16fdcee2a.tar.gz wix-099a5bc83bfde2a713a94d47e613dba16fdcee2a.tar.bz2 wix-099a5bc83bfde2a713a94d47e613dba16fdcee2a.zip |
Introduce Message attribute to remove Error inner text
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/ErrorsInUI/PackageComponents.wxs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/ErrorsInUI/PackageComponents.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/ErrorsInUI/PackageComponents.wxs index c9c65fc7..88a4ac81 100644 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/ErrorsInUI/PackageComponents.wxs +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/ErrorsInUI/PackageComponents.wxs | |||
@@ -2,10 +2,8 @@ | |||
2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
3 | <Fragment> | 3 | <Fragment> |
4 | <UI> | 4 | <UI> |
5 | <Error Id="1234"> | 5 | <Error Id="1234" Message="Category 55 Emergency Doomsday Crisis" /> |
6 | Category 55 Emergency Doomsday Crisis | 6 | <Error Id="5678" Message=" " /> |
7 | </Error> | ||
8 | <Error Id="5678"><![CDATA[ ]]></Error> | ||
9 | </UI> | 7 | </UI> |
10 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> | 8 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> |
11 | <Component> | 9 | <Component> |