Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ public void DeserializeListInterface()
#endregion

#region Array
[ActiveIssue("https://github.com/dotnet/corefx/issues/36643")]
[Fact]
public void SerializeArray()
{
Expand All @@ -106,7 +105,6 @@ public void SerializeArray()
]", json);
}

[ActiveIssue("https://github.com/dotnet/corefx/issues/36643")]
[Fact]
public void DeserializeArray()
{
Expand All @@ -124,7 +122,6 @@ public void DeserializeArray()
Assert.Equal("3", data[2]);
}

[ActiveIssue("https://github.com/dotnet/corefx/issues/36643")]
[Fact]
public void SerializeDefaultArray()
{
Expand Down Expand Up @@ -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()
{
Expand All @@ -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()
{
Expand All @@ -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()
{
Expand All @@ -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()
{
Expand All @@ -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()
{
Expand Down