diff options
author | Bob Arnson <bob@joyofsetup.com> | 2018-09-03 18:31:46 -0400 |
---|---|---|
committer | Bob Arnson <bob@joyofsetup.com> | 2018-09-03 18:31:46 -0400 |
commit | 75c33403c482d0670dd7b9ca425d34a153e40d89 (patch) | |
tree | 11ee5cc9d808f1c1b66132f4ef239ab7542a05dd /src/test | |
parent | 8a20ec988b05b9fe6312bf3d39098a00c6b46ef1 (diff) | |
download | wix-75c33403c482d0670dd7b9ca425d34a153e40d89.tar.gz wix-75c33403c482d0670dd7b9ca425d34a153e40d89.tar.bz2 wix-75c33403c482d0670dd7b9ca425d34a153e40d89.zip |
Update test now that Core now ignores equal variable redefinitions.
Depends on https://github.com/wixtoolset/Core/pull/2
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.BuildTasks/TestData/SimpleMsiPackage/MsiPackage/Package.wxs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/WixToolsetTest.BuildTasks/TestData/SimpleMsiPackage/MsiPackage/Package.wxs b/src/test/WixToolsetTest.BuildTasks/TestData/SimpleMsiPackage/MsiPackage/Package.wxs index a02b766a..f7998fff 100644 --- a/src/test/WixToolsetTest.BuildTasks/TestData/SimpleMsiPackage/MsiPackage/Package.wxs +++ b/src/test/WixToolsetTest.BuildTasks/TestData/SimpleMsiPackage/MsiPackage/Package.wxs | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | 2 | ||
3 | <?define Variable = "Value" ?> | 3 | <?define Variable = "Value" ?> |
4 | <?define Variable = "Value" ?> | 4 | <?define Variable = "DifferentValue" ?> |
5 | 5 | ||
6 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 6 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
7 | <Product Id="*" Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> | 7 | <Product Id="*" Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> |