Skip to content

Commit

Permalink
Revert "Add ActiveIssue to the MemoryMappedFiles tests"
Browse files Browse the repository at this point in the history
This reverts commit ec1ae53.
  • Loading branch information
radekdoulik committed Jun 2, 2021
1 parent 3c1f5b3 commit 8be39f5
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -697,15 +697,13 @@ private void WriteToReadOnlyFile(MemoryMappedFileAccess access, bool succeeds)
[Theory]
[InlineData(MemoryMappedFileAccess.Read)]
[InlineData(MemoryMappedFileAccess.ReadWrite)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53021", TestPlatforms.Browser)]
public void WriteToReadOnlyFile_ReadWrite(MemoryMappedFileAccess access)
{
WriteToReadOnlyFile(access, access == MemoryMappedFileAccess.Read ||
PlatformDetection.IsSuperUser);
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53021", TestPlatforms.Browser)]
public void WriteToReadOnlyFile_CopyOnWrite()
{
WriteToReadOnlyFile(MemoryMappedFileAccess.CopyOnWrite, PlatformDetection.IsSuperUser);
Expand Down

0 comments on commit 8be39f5

Please sign in to comment.