summaryrefslogtreecommitdiff
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.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/burn/WixTestTools/BundleVerifier.cs b/src/test/burn/WixTestTools/BundleVerifier.cs
index 984df169..54f90870 100644
--- a/src/test/burn/WixTestTools/BundleVerifier.cs
+++ b/src/test/burn/WixTestTools/BundleVerifier.cs
@@ -7,6 +7,7 @@ namespace WixTestTools
7 using System.Linq; 7 using System.Linq;
8 using System.Text; 8 using System.Text;
9 using Microsoft.Win32; 9 using Microsoft.Win32;
10 using WixBuildTools.TestSupport;
10 using WixToolset.Data; 11 using WixToolset.Data;
11 using WixToolset.Data.Symbols; 12 using WixToolset.Data.Symbols;
12 using Xunit; 13 using Xunit;
@@ -93,7 +94,7 @@ namespace WixTestTools
93 Assert.True(File.Exists(registration.CachePath)); 94 Assert.True(File.Exists(registration.CachePath));
94 95
95 var expectedCachePath = this.GetExpectedCachedBundlePath(); 96 var expectedCachePath = this.GetExpectedCachedBundlePath();
96 Assert.Equal(expectedCachePath, registration.CachePath, StringComparer.OrdinalIgnoreCase); 97 WixAssert.StringEqual(expectedCachePath, registration.CachePath, true);
97 98
98 return registration.CachePath; 99 return registration.CachePath;
99 } 100 }