Update ActiveIssue URLs for Newtonsoft tests for immutable collections (#6215)
authorLayomi Akinrinade <laakinri@microsoft.com>
Fri, 31 Jan 2020 02:57:20 +0000 (18:57 -0800)
committerGitHub <noreply@github.com>
Fri, 31 Jan 2020 02:57:20 +0000 (21:57 -0500)
src/libraries/System.Text.Json/tests/NewtonsoftTests/ImmutableCollectionsTests.cs

index ad020fb..d3d5ab1 100644 (file)
@@ -87,7 +87,6 @@ namespace System.Text.Json.Tests
         #endregion
 
         #region Array
-        [ActiveIssue("https://github.com/dotnet/corefx/issues/36643")]
         [Fact]
         public void SerializeArray()
         {
@@ -106,7 +105,6 @@ namespace System.Text.Json.Tests
 ]", json);
         }
 
-        [ActiveIssue("https://github.com/dotnet/corefx/issues/36643")]
         [Fact]
         public void DeserializeArray()
         {
@@ -124,7 +122,6 @@ namespace System.Text.Json.Tests
             Assert.Equal("3", data[2]);
         }
 
-        [ActiveIssue("https://github.com/dotnet/corefx/issues/36643")]
         [Fact]
         public void SerializeDefaultArray()
         {
@@ -330,7 +327,7 @@ namespace System.Text.Json.Tests
         #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 @@ namespace System.Text.Json.Tests
             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 @@ namespace System.Text.Json.Tests
             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 @@ namespace System.Text.Json.Tests
         #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 @@ namespace System.Text.Json.Tests
 }", json);
         }
 
-        [ActiveIssue("https://github.com/dotnet/corefx/issues/36643")]
+        [ActiveIssue("https://github.com/dotnet/corefx/issues/40120")]
         [Fact]
         public void DeserializeSortedDictionary()
         {