Skip to content

Commit

Permalink
[mono] Reenable tests for ##97224 which is fixed now. (#97797)
Browse files Browse the repository at this point in the history
  • Loading branch information
vargaz authored Feb 1, 2024
1 parent 9b7aa3d commit 93381bf
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/libraries/System.Linq/tests/AverageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,6 @@ public void Decimal(IEnumerable<decimal> source, decimal expected)
Assert.Equal(expected, source.Average(x => x));
}

[ActiveIssue("https://github.com/dotnet/runtime/issues/97224", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoRuntime), nameof(PlatformDetection.IsAppleMobile))]
[Fact]
public void Decimal_WithSelector()
{
Expand Down Expand Up @@ -546,7 +545,6 @@ public void NullableDecimal_NullSelector_ThrowsArgumentNullException()
AssertExtensions.Throws<ArgumentNullException>("selector", () => Enumerable.Empty<decimal?>().Average(selector));
}

[ActiveIssue("https://github.com/dotnet/runtime/issues/97224", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoRuntime), nameof(PlatformDetection.IsAppleMobile))]
[Fact]
public void NullableDecimal_WithSelector()
{
Expand Down

0 comments on commit 93381bf

Please sign in to comment.