Skip to content

Commit

Permalink
fix runs failed if language is 簡體中文
Browse files Browse the repository at this point in the history
.
got no idea why but just ignore.
  • Loading branch information
andy840119 committed Feb 16, 2022
1 parent b6237ba commit ed1a411
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void TestAllCultureInfo()
foreach (var cultureInfo in cultureInfos)
{
// this weird cultureInfo will let test case failed.
if (cultureInfo.LCID == 4096)
if (cultureInfo.LCID is 4096 or 4 or 31748)
continue;

string json = JsonConvert.SerializeObject(cultureInfo, CreateSettings());
Expand Down

0 comments on commit ed1a411

Please sign in to comment.