Use .ReplaceLineEndings() in TextFormatter

This commit is contained in:
Tig
2024-07-20 18:09:25 -06:00
parent d003d00ae0
commit b2cd779c3c
3 changed files with 16 additions and 13 deletions

View File

@@ -7219,9 +7219,9 @@ B ")]
string expectedText = """
******UI Catalog: A comprehensive sample library for******
**********************************************************
_______ _ _ _____ _*
_______ _ _ _____ _
|__ __| (_) | | / ____| (_)
| | ___ _ __ _ __ ___ _ _ __ __ _| || | __ _ _ _*
| | ___ _ __ _ __ ___ _ _ __ __ _| || | __ _ _ _
| |/ _ \ '__| '_ ` _ \| | '_ \ / _` | || | |_ | | | | |
| | __/ | | | | | | | | | | | (_| | || |__| | |_| | |
|_|\___|_| |_| |_| |_|_|_| |_|\__,_|_(_)_____|\__,_|_|
@@ -7232,7 +7232,7 @@ B ")]
**********************************************************
""";
TestHelpers.AssertDriverContentsAre (expectedText, _output);
TestHelpers.AssertDriverContentsAre (expectedText.ReplaceLineEndings (), _output);
}
}