Rename AssertEqualLineByLine to CompareLineByLine.

This commit is contained in:
Sean Hall 2020-07-19 19:47:05 +10:00
Родитель 5f3e755901
Коммит 1fb8fc82e5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -7,7 +7,7 @@ namespace WixBuildTools.TestSupport
public class WixAssert : Assert
{
public static void AssertEqualLineByLine(string[] expectedLines, string[] actualLines)
public static void CompareLineByLine(string[] expectedLines, string[] actualLines)
{
for (var i = 0; i < expectedLines.Length; ++i)
{