From 456643669f992cd41d99931c37f1ebcade439c76 Mon Sep 17 00:00:00 2001 From: Mitchell Hwang <16830051+mdh1418@users.noreply.github.com> Date: Tue, 10 Aug 2021 10:21:44 -0400 Subject: [PATCH] [libraries][iOS][tvOS] Reenable System.Resource.ResourceManager and System.Collections.Immutable tests (#56994) * [libraries][iOS][tvOS] Reenable System.Resorce.ResourceManager.Tests tests * [libraries][iOS][tvOS] Remove ActiveIssue from test with no test data Co-authored-by: Mitchell Hwang --- src/libraries/System.Collections.Immutable/tests/ImmutableArrayTest.cs | 1 - .../System.Resources.ResourceManager/tests/ResourceManagerTests.cs | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/libraries/System.Collections.Immutable/tests/ImmutableArrayTest.cs b/src/libraries/System.Collections.Immutable/tests/ImmutableArrayTest.cs index 7961a0f..7349cef 100644 --- a/src/libraries/System.Collections.Immutable/tests/ImmutableArrayTest.cs +++ b/src/libraries/System.Collections.Immutable/tests/ImmutableArrayTest.cs @@ -1984,7 +1984,6 @@ namespace System.Collections.Immutable.Tests [Theory] [MemberData(nameof(IStructuralEquatableGetHashCodeData))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/36876", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public void IStructuralEquatableGetHashCode(IEnumerable source, IEqualityComparer comparer) { var array = source.ToImmutableArray(); diff --git a/src/libraries/System.Resources.ResourceManager/tests/ResourceManagerTests.cs b/src/libraries/System.Resources.ResourceManager/tests/ResourceManagerTests.cs index ce3dd68..a7ab855 100644 --- a/src/libraries/System.Resources.ResourceManager/tests/ResourceManagerTests.cs +++ b/src/libraries/System.Resources.ResourceManager/tests/ResourceManagerTests.cs @@ -82,7 +82,6 @@ namespace System.Resources.Tests [Theory] [MemberData(nameof(CultureResourceData))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/36893", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public static void GetString_CultureFallback(string key, string cultureName, string expectedValue) { Type resourceType = typeof(Resources.TestResx); @@ -93,7 +92,6 @@ namespace System.Resources.Tests } [Fact] - [ActiveIssue("https://github.com/dotnet/runtime/issues/36893", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public static void GetString_FromTestClassWithoutNeutralResources() { // This test is designed to complement the GetString_FromCulutureAndResourceType "fr" & "fr-CA" cases -- 2.7.4