Skip to content

Commit

Permalink
Enable isolates storage tests on maccatalyst (#90150)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhamoyan authored Aug 10, 2023
1 parent 219392e commit ea21904
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ private static MethodInfo s_containsUnknownFilesMethod
= typeof(IsolatedStorageFile).GetMethod("ContainsUnknownFiles", BindingFlags.NonPublic | BindingFlags.Instance);

[Theory, MemberData(nameof(ValidStores))]
[ActiveIssue("/~https://github.com/dotnet/runtime/issues/87485", TestPlatforms.MacCatalyst)]
public void ContainsUnknownFiles_CleanStore(PresetScopes scope)
{
TestHelper.WipeStores();
Expand All @@ -24,7 +23,6 @@ public void ContainsUnknownFiles_CleanStore(PresetScopes scope)
}

[Theory, MemberData(nameof(ValidStores))]
[ActiveIssue("/~https://github.com/dotnet/runtime/issues/87485", TestPlatforms.MacCatalyst)]
public void ContainsUnknownFiles_OkFiles(PresetScopes scope)
{
TestHelper.WipeStores();
Expand All @@ -44,7 +42,6 @@ public void ContainsUnknownFiles_OkFiles(PresetScopes scope)
}

[Theory, MemberData(nameof(ValidStores))]
[ActiveIssue("/~https://github.com/dotnet/runtime/issues/87485", TestPlatforms.MacCatalyst)]
public void ContainsUnknownFiles_NotOkFiles(PresetScopes scope)
{
TestHelper.WipeStores();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ public void CopyFile_CopyOver(PresetScopes scope)
}

[Theory, MemberData(nameof(ValidStores))]
[ActiveIssue("/~https://github.com/dotnet/runtime/issues/87485", TestPlatforms.MacCatalyst)]
public void CopyFile_CopiesFile(PresetScopes scope)
{
TestHelper.WipeStores();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ public void MoveFile_MoveOver(PresetScopes scope)
}

[Theory, MemberData(nameof(ValidStores))]
[ActiveIssue("/~https://github.com/dotnet/runtime/issues/87485", TestPlatforms.MacCatalyst)]
public void MoveFile_MovesFile(PresetScopes scope)
{
TestHelper.WipeStores();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ public void OpenFile_PassesFileMode()
}

[Theory, MemberData(nameof(ValidStores))]
[ActiveIssue("/~https://github.com/dotnet/runtime/issues/87485", TestPlatforms.MacCatalyst)]
public void OpenFile_Existence(PresetScopes scope)
{
TestHelper.WipeStores();
Expand Down

0 comments on commit ea21904

Please sign in to comment.