diff --git a/src/libraries/System.Runtime/tests/System/DateTimeOffsetTests.cs b/src/libraries/System.Runtime/tests/System/DateTimeOffsetTests.cs index 6c4ae73b4a06ca..2891f18dd37df3 100644 --- a/src/libraries/System.Runtime/tests/System/DateTimeOffsetTests.cs +++ b/src/libraries/System.Runtime/tests/System/DateTimeOffsetTests.cs @@ -1308,7 +1308,6 @@ public static IEnumerable ToString_MatchesExpected_MemberData() [Theory] [MemberData(nameof(ToString_MatchesExpected_MemberData))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/60562", TestPlatforms.Android | TestPlatforms.LinuxBionic)] public static void ToString_MatchesExpected(DateTimeOffset dateTimeOffset, string format, IFormatProvider provider, string expected) { if (provider == null) @@ -1408,7 +1407,6 @@ public static void TryFormat_ToString_EqualResults() [ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotInvariantGlobalization))] [MemberData(nameof(ToString_MatchesExpected_MemberData))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/60562", TestPlatforms.Android | TestPlatforms.LinuxBionic)] public static void TryFormat_MatchesExpected(DateTimeOffset dateTimeOffset, string format, IFormatProvider provider, string expected) { var destination = new char[expected.Length]; diff --git a/src/libraries/System.Runtime/tests/System/DateTimeTests.cs b/src/libraries/System.Runtime/tests/System/DateTimeTests.cs index f4dac6708279dc..adce1c47256cb8 100644 --- a/src/libraries/System.Runtime/tests/System/DateTimeTests.cs +++ b/src/libraries/System.Runtime/tests/System/DateTimeTests.cs @@ -2297,7 +2297,6 @@ public static void ParseExact_Span_InvalidInputs_Fail(string input, string forma [Theory] [MemberData(nameof(ToString_MatchesExpected_MemberData))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/60562", TestPlatforms.Android | TestPlatforms.LinuxBionic)] public void ToString_Invoke_ReturnsExpected(DateTime dateTime, string format, IFormatProvider provider, string expected) { if (provider == null) @@ -2543,7 +2542,6 @@ public static void TryFormat_MatchesToString(string format) [ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotInvariantGlobalization))] [MemberData(nameof(ToString_MatchesExpected_MemberData))] - [ActiveIssue("https://github.com/dotnet/runtime/issues/60562", TestPlatforms.Android | TestPlatforms.LinuxBionic)] public static void TryFormat_MatchesExpected(DateTime dateTime, string format, IFormatProvider provider, string expected) { var destination = new char[expected.Length];