Skip to content

Commit

Permalink
Fix inverted active issues (#49265)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdmaclea committed Mar 6, 2021
1 parent 1d36a90 commit 6ce5878
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libraries/System.Drawing.Common/tests/GdiplusTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public void OSVersion_ParseVersion(string input, int major, int minor, int build

[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;
Expand Down

0 comments on commit 6ce5878

Please sign in to comment.