diff --git a/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.IgnoreCycles.cs b/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.IgnoreCycles.cs index 3a692ee98b5625..9e613a0e16c742 100644 --- a/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.IgnoreCycles.cs +++ b/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.IgnoreCycles.cs @@ -134,9 +134,6 @@ public async Task IgnoreCycles_OnDictionary(Type typeToSerialize) } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task IgnoreCycles_OnRecursiveDictionary() { var root = new RecursiveDictionary(); @@ -183,9 +180,6 @@ public async Task IgnoreCycles_OnList(Type typeToSerialize) } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task IgnoreCycles_OnRecursiveList() { var root = new RecursiveList(); @@ -240,9 +234,6 @@ public async Task IgnoreCycles_OnExtensionData() } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task IgnoreCycles_DoesNotSupportPreserveSemantics() { // Object @@ -279,9 +270,6 @@ public async Task IgnoreCycles_DoesNotSupportPreserveSemantics() } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task IgnoreCycles_DoesNotSupportPreserveSemantics_Polymorphic() { // Object diff --git a/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.cs b/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.cs index 562b92f990a6e7..34e2e159b3a6dc 100644 --- a/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.cs +++ b/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.cs @@ -242,9 +242,6 @@ public async Task UnicodePropertyNames() public class DictionaryWithGenericCycle : Dictionary { } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task DictionaryLoop() { DictionaryWithGenericCycle root = new DictionaryWithGenericCycle(); @@ -261,9 +258,6 @@ public async Task DictionaryLoop() } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task DictionaryPreserveDuplicateDictionaries() { DictionaryWithGenericCycle root = new DictionaryWithGenericCycle(); @@ -298,9 +292,6 @@ public async Task DictionaryObjectLoop() public class DictionaryWithGenericCycleWithinList : Dictionary> { } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task DictionaryArrayLoop() { DictionaryWithGenericCycleWithinList root = new DictionaryWithGenericCycleWithinList(); @@ -316,9 +307,6 @@ public async Task DictionaryArrayLoop() } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task DictionaryPreserveDuplicateArrays() { DictionaryWithGenericCycleWithinList root = new DictionaryWithGenericCycleWithinList(); @@ -449,9 +437,6 @@ public async Task UnicodeDictionaryKeys() public class ListWithGenericCycle : List { } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task ArrayLoop() { ListWithGenericCycle root = new ListWithGenericCycle(); @@ -518,9 +503,6 @@ public async Task ArrayPreserveDuplicateObjects() public class ListWithGenericCycleWithinDictionary : List> { } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task ArrayDictionaryLoop() { ListWithGenericCycleWithinDictionary root = new ListWithGenericCycleWithinDictionary(); @@ -536,9 +518,6 @@ public async Task ArrayDictionaryLoop() } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task ArrayPreserveDuplicateDictionaries() { ListWithGenericCycleWithinDictionary root = new ListWithGenericCycleWithinDictionary