Fix "Passed test" output
authorMark Plesko <markples@microsoft.com>
Thu, 10 Aug 2023 06:45:43 +0000 (23:45 -0700)
committerGitHub <noreply@github.com>
Thu, 10 Aug 2023 06:45:43 +0000 (23:45 -0700)
src/tests/Common/XUnitWrapperLibrary/TestSummary.cs

index adf4e1a..af085c2 100644 (file)
@@ -140,7 +140,7 @@ public class TestSummary
         var result = new TestResult(name, containingTypeName, methodName, duration, null, null, output);
         _testResults.Add(result);
 
-        outTw.WriteLine($"{0:HH:mm:ss.fff} Passed test: {1}", System.DateTime.Now, name);
+        outTw.WriteLine("{0:HH:mm:ss.fff} Passed test: {1}", System.DateTime.Now, name);
         statsCsvSw.WriteLine($"{TotalTests},{PassedTests},{FailedTests},{SkippedTests}");
         tempLogSw.WriteLine(result.ToXmlString());
         outTw.Flush();