Skip to content

Commit 62af2d7

Browse files
authored
[Blazor] Re-enable tests broken by bad dependency update (dotnet#49200) (dotnet#49258)
* Re-enables tests that were broken by a bad depencency update.
1 parent 15f0daa commit 62af2d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

+3-3
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(Skip = "https://github.com/dotnet/aspnetcore/issues/49191")]
44+
[Theory]
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.
@@ -65,7 +65,7 @@ public void LoadingApp_KoreanLanguage_Works(string code, string expectedCurrentC
6565
Assert.Equal(expectedText, localizedDisplay.Text);
6666
}
6767

68-
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/49191")]
68+
[Fact]
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(Skip = "https://github.com/dotnet/aspnetcore/issues/49191")]
86+
[Fact]
8787
public void LoadingApp_KannadaLanguage_Works()
8888
{
8989
// Arrange

0 commit comments

Comments
 (0)