Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/System.Runtime/tests/System/DateTimeTests.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/System.Runtime/tests/System/DateTimeTests.cs b/src/System.Runtime/tests/System/DateTimeTests.cs
index c88d927218..65d1412ae2 100644
--- a/src/System.Runtime/tests/System/DateTimeTests.cs
+++ b/src/System.Runtime/tests/System/DateTimeTests.cs
@@ -1109,6 +1109,7 @@ namespace System.Tests
}
+#if !MONO // currently fails, see https://github.com/mono/mono/issues/16623#issuecomment-678248447
var hebrewCulture = new CultureInfo("he-IL");
hebrewCulture.DateTimeFormat.Calendar = new HebrewCalendar();
DateTime today = DateTime.Today;
@@ -1116,6 +1117,7 @@ namespace System.Tests
{
yield return new object[] { today.ToString(pattern, hebrewCulture), pattern, hebrewCulture, DateTimeStyles.None, null };
}
+#endif
}
[Theory]