Skip to content

Commit

Permalink
Enable Common.Tests test tracked in dotnet#50955, already fixed on main
Browse files Browse the repository at this point in the history
  • Loading branch information
radical committed May 6, 2021
1 parent de99a3e commit 34cca24
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ public void AddSeveralBytesRepeatedlyAndConsumeSeveralBytesRepeatedly_UsingSlice
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/50955", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
public void CopyFromRepeatedlyAndCopyToRepeatedly_Success()
{
ReadOnlySpan<byte> source = new byte[] { 1, 2, 3, 4, 5, 6, 7 }.AsSpan();
Expand Down Expand Up @@ -245,7 +244,6 @@ public void CopyFromRepeatedlyAndCopyToRepeatedly_Success()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/50955", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
public void CopyFromRepeatedlyAndCopyToRepeatedly_LargeCopies_Success()
{
ReadOnlySpan<byte> source = Enumerable.Range(0, 64 * 1024 - 1).Select(x => (byte)x).ToArray().AsSpan();
Expand Down

0 comments on commit 34cca24

Please sign in to comment.