Code cleanup in ProcessTests (dotnet/corefx#32651)
authorViktor Hofer <viktor.hofer@microsoft.com>
Fri, 5 Oct 2018 23:14:41 +0000 (01:14 +0200)
committerSantiago Fernandez Madero <safern@microsoft.com>
Fri, 5 Oct 2018 23:14:41 +0000 (16:14 -0700)
Commit migrated from https://github.com/dotnet/corefx/commit/648eac022d5271c8773ef2c85ae47abf9c51ff8e

src/libraries/System.Diagnostics.Process/tests/ProcessTests.cs

index d44d92e..4ec4e13 100644 (file)
@@ -1195,7 +1195,7 @@ namespace System.Diagnostics.Tests
             Assert.Throws<InvalidOperationException>(() => process.StandardInput);
         }
 
-        // [Fact][SkipOnTargetFramework(TargetFrameworkMonikers.Uap)] // uncomment for diagnostic purposes to list processes to console
+        // [Fact] // uncomment for diagnostic purposes to list processes to console
         public void TestDiagnosticsWithConsoleWriteLine()
         {
             foreach (var p in Process.GetProcesses().OrderBy(p => p.Id))
@@ -1543,7 +1543,7 @@ namespace System.Diagnostics.Tests
 #pragma warning restore 0618
         }
 
-        [Fact][SkipOnTargetFramework(TargetFrameworkMonikers.Uap)]
+        [Fact]
         public void PeakWorkingSet_GetNotStarted_ThrowsInvalidOperationException()
         {
             var process = new Process();