From 0f125563d2cf1b1380e4baf781662fcffa362019 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Strehovsk=C3=BD?= Date: Tue, 2 Jan 2024 08:21:18 +0100 Subject: [PATCH 1/2] Update EnumTests.cs --- .../tests/System.Runtime.Tests/System/EnumTests.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libraries/System.Runtime/tests/System.Runtime.Tests/System/EnumTests.cs b/src/libraries/System.Runtime/tests/System.Runtime.Tests/System/EnumTests.cs index 9bbe8ff5317d2..2f8dd8ac19074 100644 --- a/src/libraries/System.Runtime/tests/System.Runtime.Tests/System/EnumTests.cs +++ b/src/libraries/System.Runtime/tests/System.Runtime.Tests/System/EnumTests.cs @@ -1599,7 +1599,6 @@ public void GetValues_EnumTypeNotEnum_ThrowsArgumentException(Type enumType) private class ClassWithEnumConstraint where T : Enum { } [Fact] - [ActiveIssue("https://github.com/dotnet/runtime/issues/94189", typeof(PlatformDetection), nameof(PlatformDetection.IsReadyToRunCompiled))] public void EnumConstraint_ThrowsArgumentException() { Type genericArgumentWithEnumConstraint = typeof(ClassWithEnumConstraint<>).GetGenericArguments()[0]; From ef1dc6f48f5870159ff2cea1aba0d5af1a70035f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Strehovsk=C3=BD?= Date: Tue, 2 Jan 2024 08:22:37 +0100 Subject: [PATCH 2/2] Update TypeTests.Get.cs --- .../tests/System.Runtime.Tests/System/Type/TypeTests.Get.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libraries/System.Runtime/tests/System.Runtime.Tests/System/Type/TypeTests.Get.cs b/src/libraries/System.Runtime/tests/System.Runtime.Tests/System/Type/TypeTests.Get.cs index e6dfe3a0cb4e8..478d23e236a7a 100644 --- a/src/libraries/System.Runtime/tests/System.Runtime.Tests/System/Type/TypeTests.Get.cs +++ b/src/libraries/System.Runtime/tests/System.Runtime.Tests/System/Type/TypeTests.Get.cs @@ -55,7 +55,6 @@ public static IEnumerable GetInterface_TestData() [Theory] [MemberData(nameof(GetInterface_TestData))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/94189", typeof(PlatformDetection), nameof(PlatformDetection.IsReadyToRunCompiled))] public void GetInterface_Invoke_ReturnsExpected(Type type, string name, bool ignoreCase, Type expected) { if (!ignoreCase)