diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-07-19 19:47:05 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-07-19 19:47:05 +1000 |
commit | 1fb8fc82e54c9651fe2922c4fc5470c26761afdf (patch) | |
tree | 9776b9e5d1a743b14578c95dee753f0036a19293 /src | |
parent | 5f3e7559016997afed60d5003fd11548c3b24e3a (diff) | |
download | wix-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.cs | 2 |
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 | { |