Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve terminal logger #4877

Merged
merged 26 commits into from
Feb 13, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update src/vstest.console/Internal/MSBuildLogger.cs
  • Loading branch information
nohwnd committed Feb 13, 2024
commit 5c1a36543305785095e47d02b44439115da63190
4 changes: 2 additions & 2 deletions src/vstest.console/Internal/MSBuildLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -335,11 +335,11 @@ private static void AddFormattedOutput(Collection<TestResultMessage> testMessage
/// </summary>
/// <param name="duration"></param>
/// <returns></returns>
internal static string? GetFormattedDurationString(TimeSpan duration)
internal static string GetFormattedDurationString(TimeSpan duration)
{
if (duration == default)
{
return null;
return "< 1ms";
}

var time = new List<string>();
Expand Down