Enable tests disabled by issue 36882 (#72931)
authorJohan Lorensson <lateralusx.github@gmail.com>
Thu, 28 Jul 2022 15:05:07 +0000 (17:05 +0200)
committerGitHub <noreply@github.com>
Thu, 28 Jul 2022 15:05:07 +0000 (17:05 +0200)
src/libraries/System.Diagnostics.Debug/tests/DebugTestsNoListeners.cs
src/libraries/System.Diagnostics.Debug/tests/DebugTestsUsingListeners.cs

index bb3be77..359df1c 100644 (file)
@@ -67,7 +67,6 @@ namespace System.Diagnostics.Tests
         }
 
         [Fact]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/36882", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)]
         public void Debug_WriteLineNull_IndentsEmptyStringProperly()
         {
             Debug.Indent();
@@ -209,7 +208,6 @@ namespace System.Diagnostics.Tests
         [InlineData(-1, 0)]
         [InlineData(0, 0)]
         [InlineData(1, 1)]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/36882", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)]
         public void IndentLevel_Set_GetReturnsExpected(int indentLevel, int expectedIndentLevel)
         {
             Debug.IndentLevel = indentLevel;
index 77ada82..790c6a3 100644 (file)
@@ -197,7 +197,6 @@ namespace System.Diagnostics.Tests
 
         [Fact]
         [ActiveIssue("https://github.com/dotnet/runtime/issues/50570", TestPlatforms.Android)]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/36882", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)]
         public void Trace_ClearTraceListeners_StopsWritingToDebugger()
         {
             VerifyLogged(() => Debug.Write("pizza"), "pizza");
@@ -231,7 +230,6 @@ namespace System.Diagnostics.Tests
         }
 
         [Fact]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/36882", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)]
         public void TraceWriteLineIf()
         {
             VerifyLogged(() => Trace.WriteLineIf(true, 5), "5" + Environment.NewLine);