@@ -41,7 +41,7 @@ public void LoadingApp_FrenchLanguage_Works()
4141 Assert . Equal ( "Bonjour!" , localizedDisplay . Text ) ;
4242 }
4343
44- [ Theory ]
44+ [ Theory ( Skip = "https://github.com/dotnet/aspnetcore/issues/49191" ) ]
4545 [ InlineData ( "ko" , "ko" , "2020. 9. 2. 오전 12:00:00" , "안녕하세요" ) ] // ko exists in the CJK data set.
4646 [ InlineData ( "ko-KR" , "ko-KR" , "2020. 9. 2. 오전 12:00:00" , "안녕하세요" ) ] // ko-KR exists in the CJK data set.
4747 [ 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.
@@ -50,7 +50,7 @@ public void LoadingApp_KoreanLanguage_Works(string code, string expectedCurrentC
5050 {
5151 // Arrange
5252 // This verifies the CJK icu data set.
53- var culture = new CultureInfo ( code ) ;
53+ var culture = new CultureInfo ( code ) ;
5454 Assert . Equal ( culture . ToString ( ) , code ) ;
5555 Initialize ( culture ) ;
5656
@@ -65,7 +65,7 @@ public void LoadingApp_KoreanLanguage_Works(string code, string expectedCurrentC
6565 Assert . Equal ( expectedText , localizedDisplay . Text ) ;
6666 }
6767
68- [ Fact ]
68+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/49191" ) ]
6969 public void LoadingApp_RussianLanguage_Works ( )
7070 {
7171 // Arrange
@@ -83,7 +83,7 @@ public void LoadingApp_RussianLanguage_Works()
8383 Assert . Equal ( "Hello" , localizedDisplay . Text ) ; // No localized resources for this culture.
8484 }
8585
86- [ Fact ]
86+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/49191" ) ]
8787 public void LoadingApp_KannadaLanguage_Works ( )
8888 {
8989 // Arrange
0 commit comments