From 6b7b11238ca95c95b7d3171fcb4f07804fd31534 Mon Sep 17 00:00:00 2001 From: Marco Rossignoli Date: Thu, 5 Jan 2023 17:05:39 +0100 Subject: [PATCH] Fix string conversion of `Microsoft.TestPlatform.Extensions.TrxLogger.ObjectMode.TestOutcome` (#4243) (#4246) Fix string conversion of `Microsoft.TestPlatform.Extensions.TrxLogger.ObjectMode.TestOutcome` --- .../ObjectModel/TestOutcome.cs | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/Microsoft.TestPlatform.Extensions.TrxLogger/ObjectModel/TestOutcome.cs b/src/Microsoft.TestPlatform.Extensions.TrxLogger/ObjectModel/TestOutcome.cs index b89a457e5b..9091d8fd94 100644 --- a/src/Microsoft.TestPlatform.Extensions.TrxLogger/ObjectModel/TestOutcome.cs +++ b/src/Microsoft.TestPlatform.Extensions.TrxLogger/ObjectModel/TestOutcome.cs @@ -86,15 +86,5 @@ internal enum TestOutcome /// /// Test is in the execution queue, was not started yet. /// - Pending, - - /// - /// The min value of this enum - /// - Min = Error, - - /// - /// The max value of this enum - /// - Max = Pending + Pending }