From 6ce5878104d61cbdbfa6eb5db959bfc63e1e8596 Mon Sep 17 00:00:00 2001 From: Steve MacLean Date: Sat, 6 Mar 2021 17:10:29 -0500 Subject: [PATCH] Fix inverted active issues (#49265) --- src/libraries/System.Drawing.Common/tests/GdiplusTests.cs | 2 +- .../System.Runtime.Extensions/tests/System/EnvironmentTests.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libraries/System.Drawing.Common/tests/GdiplusTests.cs b/src/libraries/System.Drawing.Common/tests/GdiplusTests.cs index 4e885b2..869f67a 100644 --- a/src/libraries/System.Drawing.Common/tests/GdiplusTests.cs +++ b/src/libraries/System.Drawing.Common/tests/GdiplusTests.cs @@ -8,7 +8,7 @@ namespace System.Drawing.Tests public class GdiplusTests { [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsOSX))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49111", typeof(PlatformDetection), nameof(PlatformDetection.IsNotMacOsAppleSilicon))] + [ActiveIssue("https://github.com/dotnet/runtime/issues/49111", typeof(PlatformDetection), nameof(PlatformDetection.IsMacOsAppleSilicon))] public void IsAtLeastLibgdiplus6() { Assert.True(Helpers.GetIsWindowsOrAtLeastLibgdiplus6()); diff --git a/src/libraries/System.Runtime.Extensions/tests/System/EnvironmentTests.cs b/src/libraries/System.Runtime.Extensions/tests/System/EnvironmentTests.cs index c0916d4..051c5e4 100644 --- a/src/libraries/System.Runtime.Extensions/tests/System/EnvironmentTests.cs +++ b/src/libraries/System.Runtime.Extensions/tests/System/EnvironmentTests.cs @@ -183,7 +183,7 @@ namespace System.Tests [Fact] [PlatformSpecific(TestPlatforms.OSX)] - [ActiveIssue("https://github.com/dotnet/runtime/issues/49106", typeof(PlatformDetection), nameof(PlatformDetection.IsNotMacOsAppleSilicon))] + [ActiveIssue("https://github.com/dotnet/runtime/issues/49106", typeof(PlatformDetection), nameof(PlatformDetection.IsMacOsAppleSilicon))] public void OSVersion_ValidVersion_OSX() { Version version = Environment.OSVersion.Version; -- 2.7.4