From 83e3c64793fcf3927045cd00c2c3a568bf2fa6ac Mon Sep 17 00:00:00 2001 From: Mitchell Hwang <16830051+mdh1418@users.noreply.github.com> Date: Fri, 30 Jul 2021 10:00:31 -0400 Subject: [PATCH] [libraries][Android] Move System.Text.RegularExpressions edge case tests to separate issue (#56410) Co-authored-by: Mitchell Hwang --- .../System.Text.RegularExpressions/tests/Regex.Groups.Tests.cs | 2 +- src/libraries/System.Text.RegularExpressions/tests/RegexCultureTests.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libraries/System.Text.RegularExpressions/tests/Regex.Groups.Tests.cs b/src/libraries/System.Text.RegularExpressions/tests/Regex.Groups.Tests.cs index f3acd46..0149fbe 100644 --- a/src/libraries/System.Text.RegularExpressions/tests/Regex.Groups.Tests.cs +++ b/src/libraries/System.Text.RegularExpressions/tests/Regex.Groups.Tests.cs @@ -903,7 +903,7 @@ namespace System.Text.RegularExpressions.Tests [MemberData(nameof(Groups_CustomCulture_TestData_Danish))] [MemberData(nameof(Groups_CustomCulture_TestData_Turkish))] [MemberData(nameof(Groups_CustomCulture_TestData_AzeriLatin))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/36848", TestPlatforms.Android)] + [ActiveIssue("https://github.com/dotnet/runtime/issues/56407", TestPlatforms.Android)] [ActiveIssue("https://github.com/dotnet/runtime/issues/36900", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public void Groups(string cultureName, string pattern, string input, RegexOptions options, string[] expectedGroups) { diff --git a/src/libraries/System.Text.RegularExpressions/tests/RegexCultureTests.cs b/src/libraries/System.Text.RegularExpressions/tests/RegexCultureTests.cs index ba1a601..7b51966 100644 --- a/src/libraries/System.Text.RegularExpressions/tests/RegexCultureTests.cs +++ b/src/libraries/System.Text.RegularExpressions/tests/RegexCultureTests.cs @@ -73,7 +73,7 @@ namespace System.Text.RegularExpressions.Tests [Theory] [InlineData(2)] [InlineData(256)] - [ActiveIssue("https://github.com/dotnet/runtime/issues/36848", TestPlatforms.Android)] + [ActiveIssue("https://github.com/dotnet/runtime/issues/56407", TestPlatforms.Android)] public void TurkishI_Is_Differently_LowerUpperCased_In_Turkish_Culture(int length) { var turkish = new CultureInfo("tr-TR"); -- 2.7.4