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` (#4243) (#4246)" (#4247)

This reverts commit 6b7b112.

Co-authored-by: Marco Rossignoli <mrossignol@microsoft.com>
  • Loading branch information
MarcoRossignoli and Marco Rossignoli committed Jan 6, 2023
1 parent 6b7b112 commit ca77858
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 ca77858

Please sign in to comment.