aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/WixTestTools/BundleVerifier.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/burn/WixTestTools/BundleVerifier.cs')
-rw-r--r--src/test/burn/WixTestTools/BundleVerifier.cs4
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()