Skip to content

Commit

Permalink
[tests] Don't use WriteLine in TestHelpers.Loggers as msbuild adds that
Browse files Browse the repository at this point in the history
.. itself.
  • Loading branch information
radical committed May 22, 2018
1 parent 2805bea commit b883c4f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ string FormatText (string txt)

public void Print (string message)
{
writer.WriteLine (FormatText (message));
writer.Write (FormatText (message));
}

}
Expand Down

0 comments on commit b883c4f

Please sign in to comment.