Skip to content

Commit

Permalink
fix in formattertester
Browse files Browse the repository at this point in the history
  • Loading branch information
ibond84 committed Feb 4, 2024
1 parent be92ef2 commit 8cf8487
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CodeCompletion/Testing.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1148,6 +1148,8 @@ public static void Test()
if (Text.Replace("\r\n","\n") != Text2.Replace("\r\n","\n"))
{
int line = 1;
Text = Text.Replace("\r\n", "\n");
Text2 = Text2.Replace("\r\n", "\n");
for (int i = 0; i < Math.Min(Text.Length, Text2.Length); i++)
{
if (Text[i] != Text2[i])
Expand Down

0 comments on commit 8cf8487

Please sign in to comment.