diff --git a/src/Uno.UI.Tests/Windows_Globalization/Given_CalendarFormatter.cs b/src/Uno.UI.Tests/Windows_Globalization/Given_CalendarFormatter.cs index fb5ede29639a..6523196399d3 100644 --- a/src/Uno.UI.Tests/Windows_Globalization/Given_CalendarFormatter.cs +++ b/src/Uno.UI.Tests/Windows_Globalization/Given_CalendarFormatter.cs @@ -24,7 +24,6 @@ public void When_UsingVariousLanguages(string format, string language, string ex firstPattern.Should().Be(expectedPattern); } -#if !NET7_0_OR_GREATER // https://github.com/unoplatform/uno/issues/9080 [TestMethod] [DataRow("day", "en-US|fr-CA|ru-RU", "{day.integer}|{day.integer}|{day.integer}")] [DataRow("day month year", "en-US|fr-CA", "{month.numeric}/{day.integer}/{year.full}|{year.full}-{month.numeric}-{day.integer(2)}")] @@ -33,7 +32,6 @@ public void When_UsingVariousLanguages(string format, string language, string ex [DataRow("day month", "en-US|fr-CA", "{month.full} {day.integer}|{day.integer} {month.full}")] [DataRow("hour minute second", "en-US|fr-CA", "{hour}:{minute}:{second} {period.abbreviated}|{hour}:{minute}:{second}")] [DataRow("hour minute", "en-US|fr-CA", "{hour}:{minute} {period.abbreviated}|{hour}:{minute}")] -#endif public void When_UsingMultipleLanguages(string format, string languages, string expectedPatterns) { var sut = new DateTimeFormatter(format, languages.Split('|'));