aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/WixToolsetTest.BurnE2E
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2024-02-17 17:56:57 -0500
committerBob Arnson <github@bobs.org>2024-02-17 18:39:07 -0500
commita38b07af45eb36cc13fcd2546ac45e6f769e4d6f (patch)
treef3f872f0154bd09a589becc0a45c597445911c50 /src/test/burn/WixToolsetTest.BurnE2E
parente98ff251390fe60946576b4dced9565ae3a43e43 (diff)
downloadwix-a38b07af45eb36cc13fcd2546ac45e6f769e4d6f.tar.gz
wix-a38b07af45eb36cc13fcd2546ac45e6f769e4d6f.tar.bz2
wix-a38b07af45eb36cc13fcd2546ac45e6f769e4d6f.zip
Allow MsiProperty/@Value to be an empty string.
Fixes https://github.com/wixtoolset/issues/issues/7798.
Diffstat (limited to 'src/test/burn/WixToolsetTest.BurnE2E')
-rw-r--r--src/test/burn/WixToolsetTest.BurnE2E/VariableTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/VariableTests.cs b/src/test/burn/WixToolsetTest.BurnE2E/VariableTests.cs
index 22e94260..fcd46e0b 100644
--- a/src/test/burn/WixToolsetTest.BurnE2E/VariableTests.cs
+++ b/src/test/burn/WixToolsetTest.BurnE2E/VariableTests.cs
@@ -30,7 +30,7 @@ namespace WixToolsetTest.BurnE2E
30 // Burn logging its command line. 30 // Burn logging its command line.
31 Assert.True(LogVerifier.MessageInLogFile(logFilePath, "InstallLocation=nothingtoseehere licensekey=*****")); 31 Assert.True(LogVerifier.MessageInLogFile(logFilePath, "InstallLocation=nothingtoseehere licensekey=*****"));
32 // Burn logging the MSI install command line. 32 // Burn logging the MSI install command line.
33 Assert.True(LogVerifier.MessageInLogFile(logFilePath, "INSTALLLOCATION=\"nothingtoseehere\" LICENSEKEY=\"*****\"")); 33 Assert.True(LogVerifier.MessageInLogFile(logFilePath, "INSTALLLOCATION=\"nothingtoseehere\" LICENSEKEY=\"*****\" BLANKPROPERTY=\"\""));
34 Assert.False(LogVerifier.MessageInLogFile(logFilePath, "supersecretkey")); 34 Assert.False(LogVerifier.MessageInLogFile(logFilePath, "supersecretkey"));
35 } 35 }
36 36