aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-07-19 19:47:05 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-07-19 19:47:05 +1000
commit1fb8fc82e54c9651fe2922c4fc5470c26761afdf (patch)
tree9776b9e5d1a743b14578c95dee753f0036a19293 /src
parent5f3e7559016997afed60d5003fd11548c3b24e3a (diff)
downloadwix-1fb8fc82e54c9651fe2922c4fc5470c26761afdf.tar.gz
wix-1fb8fc82e54c9651fe2922c4fc5470c26761afdf.tar.bz2
wix-1fb8fc82e54c9651fe2922c4fc5470c26761afdf.zip
Rename AssertEqualLineByLine to CompareLineByLine.
Diffstat (limited to 'src')
-rw-r--r--src/WixBuildTools.TestSupport/WixAssert.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixBuildTools.TestSupport/WixAssert.cs b/src/WixBuildTools.TestSupport/WixAssert.cs
index 71dc6b67..32a98463 100644
--- a/src/WixBuildTools.TestSupport/WixAssert.cs
+++ b/src/WixBuildTools.TestSupport/WixAssert.cs
@@ -7,7 +7,7 @@ namespace WixBuildTools.TestSupport
7 7
8 public class WixAssert : Assert 8 public class WixAssert : Assert
9 { 9 {
10 public static void AssertEqualLineByLine(string[] expectedLines, string[] actualLines) 10 public static void CompareLineByLine(string[] expectedLines, string[] actualLines)
11 { 11 {
12 for (var i = 0; i < expectedLines.Length; ++i) 12 for (var i = 0; i < expectedLines.Length; ++i)
13 { 13 {