Skip to content

Commit

Permalink
Fixed by dotnet#96354
Browse files Browse the repository at this point in the history
  • Loading branch information
ilonatommy committed Jan 22, 2024
1 parent aa2bdee commit 91079fa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public void Default_GetHashCodeCompare(object a, object b, bool expected)
CaseInsensitiveHashCodeProvider.DefaultInvariant.GetHashCode(a) == CaseInsensitiveHashCodeProvider.DefaultInvariant.GetHashCode(b));
}

[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotInvariantGlobalization), nameof(PlatformDetection.IsNotHybridGlobalizationOnBrowser))]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotInvariantGlobalization))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/37069", TestPlatforms.Android | TestPlatforms.LinuxBionic)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/95338", typeof(PlatformDetection), nameof(PlatformDetection.IsHybridGlobalizationOnApplePlatform))]
public void Default_Compare_TurkishI()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void CopyToDataTableTableArgNoRows()
dt.AsEnumerable().CopyToDataTable(dst, LoadOption.PreserveChanges);
}

[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotHybridGlobalizationOnBrowser))]
[Fact]
public void AsEnumerable()
{
DataSet ds = new DataSet();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class EnumerableRowCollectionTest
{
private string _testDataSet = "Mono/testdataset1.xml";

[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotHybridGlobalizationOnBrowser))]
[Fact]
public void QueryWhere()
{
var ds = new DataSet();
Expand All @@ -68,7 +68,7 @@ where line.Field<int>("Score") > 80
}
}

[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotHybridGlobalizationOnBrowser))]
[Fact]
public void QueryWhereSelect ()
{
var ds = new DataSet ();
Expand All @@ -89,7 +89,7 @@ where line.Field<int> ("Score") > 80
}
}

[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotHybridGlobalizationOnBrowser))]
[Fact]
public void QueryWhereSelectOrderBy ()
{
var ds = new DataSet ();
Expand Down Expand Up @@ -119,7 +119,7 @@ orderby line.Field<int> ("ID")
}
}

[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotHybridGlobalizationOnBrowser))]
[Fact]
public void QueryWhereSelectOrderByDescending ()
{
var ds = new DataSet ();
Expand Down Expand Up @@ -149,7 +149,7 @@ orderby line.Field<int> ("ID") descending
}
}

[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotHybridGlobalizationOnBrowser))]
[Fact]
public void ThenBy ()
{
var ds = new DataSet ();
Expand Down Expand Up @@ -179,7 +179,7 @@ orderby line.Field<bool> ("Gender"), line.Field<int> ("ID")
}
}

[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsNotHybridGlobalizationOnBrowser))]
[Fact]
public void ThenByDescending ()
{
var ds = new DataSet ();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3252,7 +3252,7 @@ public void AddExtObject32(object param, XslInputType xslInputType, ReaderType r
[InlineData("sort.xsl", "sort.txt", XslInputType.Navigator, ReaderType.XmlValidatingReader, OutputType.Writer, NavType.XPathDocument)]
[InlineData("sort.xsl", "sort.txt", XslInputType.Navigator, ReaderType.XmlValidatingReader, OutputType.TextWriter, NavType.XPathDocument)]

[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotHybridGlobalizationOnBrowser))]
[Theory]
public void AddExtObject33(object param0, object param1, XslInputType xslInputType, ReaderType readerType, OutputType outputType, NavType navType)
{
ExObj obj = new ExObj(0, _output);
Expand Down

0 comments on commit 91079fa

Please sign in to comment.