Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void LoadingApp_FrenchLanguage_Works()
Assert.Equal("Bonjour!", localizedDisplay.Text);
}

[Theory]
[Theory(Skip = "https://github.com/dotnet/aspnetcore/issues/49191")]
[InlineData("ko", "ko", "2020. 9. 2. 오전 12:00:00", "안녕하세요")] // ko exists in the CJK data set.
[InlineData("ko-KR", "ko-KR", "2020. 9. 2. 오전 12:00:00", "안녕하세요")]// ko-KR exists in the CJK data set.
[InlineData("ko-KO", "ko-KO", "2020. 9. 2. 00:00:00", "안녕하세요")] // ko-KO is custom culture and doesn't exist in the CJK data set.
Expand All @@ -50,7 +50,7 @@ public void LoadingApp_KoreanLanguage_Works(string code, string expectedCurrentC
{
// Arrange
// This verifies the CJK icu data set.
var culture = new CultureInfo(code);
var culture = new CultureInfo(code);
Assert.Equal(culture.ToString(), code);
Initialize(culture);

Expand All @@ -65,7 +65,7 @@ public void LoadingApp_KoreanLanguage_Works(string code, string expectedCurrentC
Assert.Equal(expectedText, localizedDisplay.Text);
}

[Fact]
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/49191")]
public void LoadingApp_RussianLanguage_Works()
{
// Arrange
Expand All @@ -83,7 +83,7 @@ public void LoadingApp_RussianLanguage_Works()
Assert.Equal("Hello", localizedDisplay.Text); // No localized resources for this culture.
}

[Fact]
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/49191")]
public void LoadingApp_KannadaLanguage_Works()
{
// Arrange
Expand Down