From 3a25c6d93acfbd5453bc06a6678219f6b4427d84 Mon Sep 17 00:00:00 2001 From: Layomi Akinrinade Date: Thu, 30 Jan 2020 15:47:23 -0800 Subject: [PATCH] Update ActiveIssue URLs for Newtonsoft tests for immutable collections --- .../NewtonsoftTests/ImmutableCollectionsTests.cs | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/libraries/System.Text.Json/tests/NewtonsoftTests/ImmutableCollectionsTests.cs b/src/libraries/System.Text.Json/tests/NewtonsoftTests/ImmutableCollectionsTests.cs index ad020fbe0ed986..d3d5ab1dff8073 100644 --- a/src/libraries/System.Text.Json/tests/NewtonsoftTests/ImmutableCollectionsTests.cs +++ b/src/libraries/System.Text.Json/tests/NewtonsoftTests/ImmutableCollectionsTests.cs @@ -87,7 +87,6 @@ public void DeserializeListInterface() #endregion #region Array - [ActiveIssue("https://github.com/dotnet/corefx/issues/36643")] [Fact] public void SerializeArray() { @@ -106,7 +105,6 @@ public void SerializeArray() ]", json); } - [ActiveIssue("https://github.com/dotnet/corefx/issues/36643")] [Fact] public void DeserializeArray() { @@ -124,7 +122,6 @@ public void DeserializeArray() Assert.Equal("3", data[2]); } - [ActiveIssue("https://github.com/dotnet/corefx/issues/36643")] [Fact] public void SerializeDefaultArray() { @@ -330,7 +327,7 @@ public void DeserializeSortedSet() #endregion #region Dictionary - [ActiveIssue("https://github.com/dotnet/corefx/issues/36643")] + [ActiveIssue("https://github.com/dotnet/corefx/issues/40120")] [Fact] public void SerializeDictionary() { @@ -349,7 +346,7 @@ public void SerializeDictionary() Assert.Equal("3", (string)a[3]); } - [ActiveIssue("https://github.com/dotnet/corefx/issues/36643")] + [ActiveIssue("https://github.com/dotnet/corefx/issues/40120")] [Fact] public void DeserializeDictionary() { @@ -367,7 +364,7 @@ public void DeserializeDictionary() Assert.Equal("3", data[3]); } - [ActiveIssue("https://github.com/dotnet/corefx/issues/36643")] + [ActiveIssue("https://github.com/dotnet/corefx/issues/40120")] [Fact] public void DeserializeDictionaryInterface() { @@ -387,7 +384,7 @@ public void DeserializeDictionaryInterface() #endregion #region SortedDictionary - [ActiveIssue("https://github.com/dotnet/corefx/issues/36643")] + [ActiveIssue("https://github.com/dotnet/corefx/issues/40120")] [Fact] public void SerializeSortedDictionary() { @@ -406,7 +403,7 @@ public void SerializeSortedDictionary() }", json); } - [ActiveIssue("https://github.com/dotnet/corefx/issues/36643")] + [ActiveIssue("https://github.com/dotnet/corefx/issues/40120")] [Fact] public void DeserializeSortedDictionary() {