Skip to content
Merged
Prev Previous commit
Next Next commit
Skip tests failing on tvOS
  • Loading branch information
simonrozsival committed Aug 18, 2022
commit 59b49d694af646f7e5abcfaa2e311a0646101222
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ public static void Xml_ListRoot()
// horizon that it's not worth the trouble.
#if !XMLSERIALIZERGENERATORTESTS
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.tvOS)]
public static void Xml_ReadOnlyCollection()
{
ReadOnlyCollection<string> roc = new ReadOnlyCollection<string>(new string[] { "one", "two" });
Expand All @@ -224,6 +225,7 @@ public static void Xml_ReadOnlyCollection()

[Theory]
[MemberData(nameof(Xml_ImmutableCollections_MemberData))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.tvOS)]
public static void Xml_ImmutableCollections(Type type, object collection, Type createException, Type addException, string expectedXml, string exMsg = null)
{
XmlSerializer serializer;
Expand Down