Skip to content

Commit 419e726

Browse files
committed
Skip tests broken by bad dependency update
1 parent efddb17 commit 419e726

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Components/test/E2ETest/Tests/WebAssemblyICUShardingTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

0 commit comments

Comments
 (0)