Skip to content

Commit

Permalink
Revert "Disable flaky CodeDom tests (#53419)"
Browse files Browse the repository at this point in the history
This reverts commit cb1f5ad.
  • Loading branch information
janvorli committed Jun 1, 2021
1 parent 85fde05 commit 9ad6329
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ public static IEnumerable<object[]> AddRange_TestData()

[Theory]
[MemberData(nameof(AddRange_TestData))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53042", framework: TargetFrameworkMonikers.Netcoreapp, runtimes: TestRuntimes.CoreCLR)]
public void Ctor_Array_Works(TItem[] value)
{
var collection = CtorArray(value);
Expand All @@ -55,7 +54,6 @@ public void Ctor_Array_Works(TItem[] value)

[Theory]
[MemberData(nameof(AddRange_TestData))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53042", framework: TargetFrameworkMonikers.Netcoreapp, runtimes: TestRuntimes.CoreCLR)]
public void Ctor_CodeStatementCollection_Works(TItem[] value)
{
var collection = CtorCollection(CtorArray(value));
Expand All @@ -64,7 +62,6 @@ public void Ctor_CodeStatementCollection_Works(TItem[] value)

[Theory]
[MemberData(nameof(AddRange_TestData))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53042", framework: TargetFrameworkMonikers.Netcoreapp, runtimes: TestRuntimes.CoreCLR)]
public void AddRange_CodeStatementArray_Works(TItem[] value)
{
var collection = Ctor();
Expand All @@ -74,7 +71,6 @@ public void AddRange_CodeStatementArray_Works(TItem[] value)

[Theory]
[MemberData(nameof(AddRange_TestData))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/53042", framework: TargetFrameworkMonikers.Netcoreapp, runtimes: TestRuntimes.CoreCLR)]
public void AddRange_CodeStatementCollection_Works(TItem[] value)
{
var collection = Ctor();
Expand Down

0 comments on commit 9ad6329

Please sign in to comment.