diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-04-22 16:56:21 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-04-23 15:40:21 -0500 |
commit | a981e29d7a3df566754356c3fe1eb938a5cac4c1 (patch) | |
tree | 9d2b2abac872ae3c4917003812951e68b72e7163 /src/test/burn/WixTestTools | |
parent | 72e20f682c0d64102e86439ba5527dd0d71932ae (diff) | |
download | wix-a981e29d7a3df566754356c3fe1eb938a5cac4c1.tar.gz wix-a981e29d7a3df566754356c3fe1eb938a5cac4c1.tar.bz2 wix-a981e29d7a3df566754356c3fe1eb938a5cac4c1.zip |
Make the estimated size in ARP a little more accurate.
Fixes 4039
Diffstat (limited to 'src/test/burn/WixTestTools')
-rw-r--r-- | src/test/burn/WixTestTools/BundleVerifier.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/burn/WixTestTools/BundleVerifier.cs b/src/test/burn/WixTestTools/BundleVerifier.cs index 56044c5f..594b19aa 100644 --- a/src/test/burn/WixTestTools/BundleVerifier.cs +++ b/src/test/burn/WixTestTools/BundleVerifier.cs | |||
@@ -87,7 +87,7 @@ namespace WixTestTools | |||
87 | } | 87 | } |
88 | } | 88 | } |
89 | 89 | ||
90 | public string VerifyRegisteredAndInPackageCache(int? expectedSystemComponent = null) | 90 | public BundleRegistration VerifyRegisteredAndInPackageCache(int? expectedSystemComponent = null) |
91 | { | 91 | { |
92 | Assert.True(this.TryGetRegistration(out var registration)); | 92 | Assert.True(this.TryGetRegistration(out var registration)); |
93 | 93 | ||
@@ -99,7 +99,7 @@ namespace WixTestTools | |||
99 | var expectedCachePath = this.GetExpectedCachedBundlePath(); | 99 | var expectedCachePath = this.GetExpectedCachedBundlePath(); |
100 | WixAssert.StringEqual(expectedCachePath, registration.CachePath, true); | 100 | WixAssert.StringEqual(expectedCachePath, registration.CachePath, true); |
101 | 101 | ||
102 | return registration.CachePath; | 102 | return registration; |
103 | } | 103 | } |
104 | 104 | ||
105 | public void VerifyUnregisteredAndRemovedFromPackageCache() | 105 | public void VerifyUnregisteredAndRemovedFromPackageCache() |