Skip to content

Commit 6d9e2ea

Browse files
authored
Fix typo in initialized (#3319)
1 parent 37cbd55 commit 6d9e2ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Adapter/MSTestAdapter.PlatformServices/Services/ThreadSafeStringWriter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class ThreadSafeStringWriter : StringWriter
2828
/// we initiate this AsyncLocal in a place that is a separate Task for each test, and so any output that is written into a common stream
2929
/// (e.g. via Console.WriteLine - which is static, and hence common), will them be multiplexed by the appropriate AsyncLocal, and in effect
3030
/// we will get outputs splits for each test even if two tests run at the same time and write into console.
31-
/// See https://github.com/microsoft/testfx/pull/1705 for a fix of a related bug, in that bug we intialized the state too early, and it then inherited
31+
/// See https://github.com/microsoft/testfx/pull/1705 for a fix of a related bug, in that bug we initialized the state too early, and it then inherited
3232
/// the same state to every Task (for every test) that we were running, and it all broke.
3333
/// </summary>
3434
/// <param name="formatProvider">

0 commit comments

Comments
 (0)