@@ -41,7 +41,7 @@ public void LoadingApp_FrenchLanguage_Works()
41
41
Assert . Equal ( "Bonjour!" , localizedDisplay . Text ) ;
42
42
}
43
43
44
- [ Theory ]
44
+ [ Theory ( Skip = "https://github.com/dotnet/aspnetcore/issues/49191" ) ]
45
45
[ InlineData ( "ko" , "ko" , "2020. 9. 2. 오전 12:00:00" , "안녕하세요" ) ] // ko exists in the CJK data set.
46
46
[ InlineData ( "ko-KR" , "ko-KR" , "2020. 9. 2. 오전 12:00:00" , "안녕하세요" ) ] // ko-KR exists in the CJK data set.
47
47
[ 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
50
50
{
51
51
// Arrange
52
52
// This verifies the CJK icu data set.
53
- var culture = new CultureInfo ( code ) ;
53
+ var culture = new CultureInfo ( code ) ;
54
54
Assert . Equal ( culture . ToString ( ) , code ) ;
55
55
Initialize ( culture ) ;
56
56
@@ -65,7 +65,7 @@ public void LoadingApp_KoreanLanguage_Works(string code, string expectedCurrentC
65
65
Assert . Equal ( expectedText , localizedDisplay . Text ) ;
66
66
}
67
67
68
- [ Fact ]
68
+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/49191" ) ]
69
69
public void LoadingApp_RussianLanguage_Works ( )
70
70
{
71
71
// Arrange
@@ -83,7 +83,7 @@ public void LoadingApp_RussianLanguage_Works()
83
83
Assert . Equal ( "Hello" , localizedDisplay . Text ) ; // No localized resources for this culture.
84
84
}
85
85
86
- [ Fact ]
86
+ [ Fact ( Skip = "https://github.com/dotnet/aspnetcore/issues/49191" ) ]
87
87
public void LoadingApp_KannadaLanguage_Works ( )
88
88
{
89
89
// Arrange
0 commit comments