From 7d7d8a15cea8e98f25743deaaa494e740404c07b Mon Sep 17 00:00:00 2001 From: Jakub Chocholowicz Date: Thu, 11 Jun 2020 13:08:39 +0200 Subject: [PATCH] revert not related changes --- .../JsonDataSerializer.cs | 2 +- .../Adapter/FrameworkHandle.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/JsonDataSerializer.cs b/src/Microsoft.TestPlatform.CommunicationUtilities/JsonDataSerializer.cs index 4923e98e4a..d0aa538ebe 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/JsonDataSerializer.cs +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/JsonDataSerializer.cs @@ -47,7 +47,7 @@ private JsonDataSerializer() // MemoryTraceWriter can help diagnose serialization issues. Enable it for // debug builds only. // Note that MemoryTraceWriter is not thread safe, please don't use it in parallel - // test run. See https://github.com/JamesNK/Newtonsoft.Json/issues/1279 + // test runs. See https://github.com/JamesNK/Newtonsoft.Json/issues/1279 payloadSerializer.TraceWriter = new MemoryTraceWriter(); payloadSerializer2.TraceWriter = new MemoryTraceWriter(); #endif diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Adapter/FrameworkHandle.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/Adapter/FrameworkHandle.cs index fb5fb90129..ca8ba14780 100644 --- a/src/Microsoft.TestPlatform.CrossPlatEngine/Adapter/FrameworkHandle.cs +++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Adapter/FrameworkHandle.cs @@ -59,7 +59,7 @@ public FrameworkHandle(ITestCaseEventsHandler testCaseEventsHandler, ITestRunCac /// - /// Give a hint to the execution framework to enable the shutdown of execution process after the test run is complete. This should be used only in out of process test run when IRunContext.KeepAlive is true + /// Give a hint to the execution framework to enable the shutdown of execution process after the test run is complete. This should be used only in out of process test runs when IRunContext.KeepAlive is true /// and should be used only when absolutely required as using it degrades the performance of the subsequent run. /// It throws InvalidOperationException when it is attempted to be enabled when keepAlive is false. ///