Skip to content

Commit

Permalink
Remove ActiveIssue for #51723 (#54830)
Browse files Browse the repository at this point in the history
  • Loading branch information
lewing committed Jun 28, 2021
1 parent 291e284 commit 6e045f4
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ public void IEnumerable_NonGeneric_Enumerator_MoveNext_AfterEndOfCollection(int
}

[Theory]
[ActiveIssue("https://github.com/dotnet/runtime/issues/51723", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
[MemberData(nameof(ValidCollectionSizes))]
public void IEnumerable_NonGeneric_Enumerator_MoveNext_ModifiedBeforeEnumeration_ThrowsInvalidOperationException(int count)
{
Expand All @@ -147,7 +146,6 @@ public void IEnumerable_NonGeneric_Enumerator_MoveNext_ModifiedBeforeEnumeration
}

[Theory]
[ActiveIssue("https://github.com/dotnet/runtime/issues/51723", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
[MemberData(nameof(ValidCollectionSizes))]
public void IEnumerable_NonGeneric_Enumerator_MoveNext_ModifiedDuringEnumeration_ThrowsInvalidOperationException(int count)
{
Expand All @@ -163,7 +161,6 @@ public void IEnumerable_NonGeneric_Enumerator_MoveNext_ModifiedDuringEnumeration
}

[Theory]
[ActiveIssue("https://github.com/dotnet/runtime/issues/51723", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
[MemberData(nameof(ValidCollectionSizes))]
public void IEnumerable_NonGeneric_Enumerator_MoveNext_ModifiedAfterEnumeration_ThrowsInvalidOperationException(int count)
{
Expand Down Expand Up @@ -251,7 +248,6 @@ public virtual void Enumerator_Current_AfterEndOfEnumerable_UndefinedBehavior(in
}

[Theory]
[ActiveIssue("https://github.com/dotnet/runtime/issues/51723", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
[MemberData(nameof(ValidCollectionSizes))]
public virtual void Enumerator_Current_ModifiedDuringEnumeration_UndefinedBehavior(int count)
{
Expand Down Expand Up @@ -286,7 +282,6 @@ public void IEnumerable_NonGeneric_Enumerator_Reset_BeforeIteration_Support(int
}

[Theory]
[ActiveIssue("https://github.com/dotnet/runtime/issues/51723", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
[MemberData(nameof(ValidCollectionSizes))]
public void IEnumerable_NonGeneric_Enumerator_Reset_ModifiedBeforeEnumeration_ThrowsInvalidOperationException(int count)
{
Expand All @@ -300,7 +295,6 @@ public void IEnumerable_NonGeneric_Enumerator_Reset_ModifiedBeforeEnumeration_Th
}

[Theory]
[ActiveIssue("https://github.com/dotnet/runtime/issues/51723", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
[MemberData(nameof(ValidCollectionSizes))]
public void IEnumerable_NonGeneric_Enumerator_Reset_ModifiedDuringEnumeration_ThrowsInvalidOperationException(int count)
{
Expand All @@ -316,7 +310,6 @@ public void IEnumerable_NonGeneric_Enumerator_Reset_ModifiedDuringEnumeration_Th
}

[Theory]
[ActiveIssue("https://github.com/dotnet/runtime/issues/51723", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
[MemberData(nameof(ValidCollectionSizes))]
public void IEnumerable_NonGeneric_Enumerator_Reset_ModifiedAfterEnumeration_ThrowsInvalidOperationException(int count)
{
Expand Down

0 comments on commit 6e045f4

Please sign in to comment.