Skip to content

Commit

Permalink
Revert "Fix string conversion of `Microsoft.TestPlatform.Extensions.T…
Browse files Browse the repository at this point in the history
…rxLogger.ObjectMode.TestOutcome` (microsoft#4243) (microsoft#4246)"

This reverts commit 6b7b112.
  • Loading branch information
Marco Rossignoli committed Jan 6, 2023
1 parent 6b7b112 commit 0cadad6
Showing 1 changed file with 11 additions and 1 deletion.
Expand Up @@ -86,5 +86,15 @@ internal enum TestOutcome
/// <summary>
/// Test is in the execution queue, was not started yet.
/// </summary>
Pending
Pending,

/// <summary>
/// The min value of this enum
/// </summary>
Min = Error,

/// <summary>
/// The max value of this enum
/// </summary>
Max = Pending
}

0 comments on commit 0cadad6

Please sign in to comment.