Skip to content

Commit

Permalink
Add ActiveIssue attr to the FileSystem tests
Browse files Browse the repository at this point in the history
  • Loading branch information
radekdoulik committed May 28, 2021
1 parent d9d4cc5 commit 356b3ff
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ public void OpenFile_ThrowsIOException()
/// file is allowed.
/// </summary>
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53021", TestPlatforms.Browser)]
public void WriteToReadOnlyFile()
{
string path = GetTestFilePath();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ public async Task OpenFile_ThrowsIOExceptionAsync()
/// file is allowed.
/// </summary>
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53021", TestPlatforms.Browser)]
public async Task WriteToReadOnlyFileAsync()
{
string path = GetTestFilePath();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ public void Read_FileNotFound()
/// file is allowed.
/// </summary>
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53021", TestPlatforms.Browser)]
public void WriteToReadOnlyFile()
{
string path = GetTestFilePath();
Expand Down Expand Up @@ -293,6 +294,7 @@ public void Read_FileNotFound()
/// file is allowed.
/// </summary>
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53021", TestPlatforms.Browser)]
public void WriteToReadOnlyFile()
{
string path = GetTestFilePath();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ public Task Read_FileNotFound() =>
/// file is allowed.
/// </summary>
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53021", TestPlatforms.Browser)]
public async Task WriteToReadOnlyFile()
{
string path = GetTestFilePath();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ public void Read_FileNotFound()
/// file is allowed.
/// </summary>
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53021", TestPlatforms.Browser)]
public void WriteToReadOnlyFile()
{
string path = GetTestFilePath();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ public Task Read_FileNotFoundAsync() =>
/// file is allowed.
/// </summary>
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53021", TestPlatforms.Browser)]
public async Task WriteToReadOnlyFileAsync()
{
string path = GetTestFilePath();
Expand Down

0 comments on commit 356b3ff

Please sign in to comment.