diff --git a/src/libraries/System.Drawing.Common/tests/PenTests.cs b/src/libraries/System.Drawing.Common/tests/PenTests.cs index 3b413bc0f0b9d..b5f39c4483855 100644 --- a/src/libraries/System.Drawing.Common/tests/PenTests.cs +++ b/src/libraries/System.Drawing.Common/tests/PenTests.cs @@ -46,6 +46,7 @@ public static IEnumerable Ctor_Brush_Width_TestData() yield return new object[] { new SolidBrush(Color.Red), float.MaxValue, PenType.SolidColor }; } + [ActiveIssue("https://github.com/dotnet/runtime/issues/60731", TestPlatforms.Windows)] [ConditionalTheory(Helpers.IsDrawingSupported)] [MemberData(nameof(Ctor_Brush_Width_TestData))] public void Ctor_Brush_Width(T brush, float width, PenType expectedPenType) where T : Brush @@ -96,6 +97,7 @@ public void Ctor_Color() } } + [ActiveIssue("https://github.com/dotnet/runtime/issues/60731", TestPlatforms.Windows)] [ConditionalTheory(Helpers.IsDrawingSupported)] [InlineData(-1)] [InlineData(0)]