diff options
Diffstat (limited to 'src/test/burn/WixToolsetTest.BurnE2E/MsiTransactionTests.cs')
-rw-r--r-- | src/test/burn/WixToolsetTest.BurnE2E/MsiTransactionTests.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/MsiTransactionTests.cs b/src/test/burn/WixToolsetTest.BurnE2E/MsiTransactionTests.cs index 3d9748bb..cbfee806 100644 --- a/src/test/burn/WixToolsetTest.BurnE2E/MsiTransactionTests.cs +++ b/src/test/burn/WixToolsetTest.BurnE2E/MsiTransactionTests.cs | |||
@@ -42,7 +42,7 @@ namespace WixToolsetTest.BurnE2E | |||
42 | 42 | ||
43 | bundleAv1.Install(); | 43 | bundleAv1.Install(); |
44 | 44 | ||
45 | var bundleAv1CachedPath = bundleAv1.VerifyRegisteredAndInPackageCache(); | 45 | var bundleAv1Registration = bundleAv1.VerifyRegisteredAndInPackageCache(); |
46 | 46 | ||
47 | // Source file should be installed | 47 | // Source file should be installed |
48 | Assert.True(File.Exists(packageASourceCodeInstalled), String.Concat("Should have found Package A payload installed at: ", packageASourceCodeInstalled)); | 48 | Assert.True(File.Exists(packageASourceCodeInstalled), String.Concat("Should have found Package A payload installed at: ", packageASourceCodeInstalled)); |
@@ -51,7 +51,7 @@ namespace WixToolsetTest.BurnE2E | |||
51 | 51 | ||
52 | bundleAv2.Install(); | 52 | bundleAv2.Install(); |
53 | 53 | ||
54 | var bundleAv2CachedPath = bundleAv2.VerifyRegisteredAndInPackageCache(); | 54 | var bundleAv2Registration = bundleAv2.VerifyRegisteredAndInPackageCache(); |
55 | 55 | ||
56 | // Source file should be upgraded | 56 | // Source file should be upgraded |
57 | Assert.True(File.Exists(packageDSourceCodeInstalled), String.Concat("Should have found Package D payload installed at: ", packageDSourceCodeInstalled)); | 57 | Assert.True(File.Exists(packageDSourceCodeInstalled), String.Concat("Should have found Package D payload installed at: ", packageDSourceCodeInstalled)); |
@@ -61,7 +61,7 @@ namespace WixToolsetTest.BurnE2E | |||
61 | Assert.False(File.Exists(packageBv1SourceCodeInstalled), String.Concat("Package Bv1 payload should have been removed by upgrade uninstall from: ", packageBv1SourceCodeInstalled)); | 61 | Assert.False(File.Exists(packageBv1SourceCodeInstalled), String.Concat("Package Bv1 payload should have been removed by upgrade uninstall from: ", packageBv1SourceCodeInstalled)); |
62 | Assert.False(File.Exists(packageASourceCodeInstalled), String.Concat("Package A payload should have been removed by upgrade uninstall from: ", packageASourceCodeInstalled)); | 62 | Assert.False(File.Exists(packageASourceCodeInstalled), String.Concat("Package A payload should have been removed by upgrade uninstall from: ", packageASourceCodeInstalled)); |
63 | 63 | ||
64 | bundleAv1.VerifyUnregisteredAndRemovedFromPackageCache(bundleAv1CachedPath); | 64 | bundleAv1.VerifyUnregisteredAndRemovedFromPackageCache(bundleAv1Registration.CachePath); |
65 | 65 | ||
66 | // Uninstall everything. | 66 | // Uninstall everything. |
67 | bundleAv2.Uninstall(); | 67 | bundleAv2.Uninstall(); |
@@ -71,7 +71,7 @@ namespace WixToolsetTest.BurnE2E | |||
71 | Assert.False(File.Exists(packageBv2SourceCodeInstalled), String.Concat("Package Bv2 payload should have been removed by uninstall from: ", packageBv2SourceCodeInstalled)); | 71 | Assert.False(File.Exists(packageBv2SourceCodeInstalled), String.Concat("Package Bv2 payload should have been removed by uninstall from: ", packageBv2SourceCodeInstalled)); |
72 | Assert.False(File.Exists(packageCv2SourceCodeInstalled), String.Concat("Package Cv2 payload should have been removed by uninstall from: ", packageCv2SourceCodeInstalled)); | 72 | Assert.False(File.Exists(packageCv2SourceCodeInstalled), String.Concat("Package Cv2 payload should have been removed by uninstall from: ", packageCv2SourceCodeInstalled)); |
73 | 73 | ||
74 | bundleAv2.VerifyUnregisteredAndRemovedFromPackageCache(bundleAv2CachedPath); | 74 | bundleAv2.VerifyUnregisteredAndRemovedFromPackageCache(bundleAv2Registration.CachePath); |
75 | } | 75 | } |
76 | 76 | ||
77 | /// <summary> | 77 | /// <summary> |