Skip to content

Commit

Permalink
test: Unskip When_UsingMultipleLanguages
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef1313 authored Jan 7, 2025
1 parent 4094050 commit 52a9a08
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)}")]
Expand All @@ -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('|'));
Expand Down

0 comments on commit 52a9a08

Please sign in to comment.