1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-01 03:05:24 +01:00

Fix ToUpper tests on Windows

LCMapStringEx does not unfold ligatures if there is no uppercase equivalent.
This commit is contained in:
Ted John
2018-05-15 20:34:18 +01:00
committed by Aaron van Geffen
parent bf1fd997d0
commit 71a2cb46d2
2 changed files with 3 additions and 3 deletions

View File

@@ -126,7 +126,7 @@ TEST_F(StringTest, ToUpper_Basic)
}
TEST_F(StringTest, ToUpper_Dutch)
{
auto actual = String::ToUpper(u8"fijntjes puend etsen");
auto actual = String::ToUpper(u8"fijntjes puffend fietsen");
ASSERT_STREQ(actual.c_str(), u8"FIJNTJES PUFFEND FIETSEN");
}
TEST_F(StringTest, ToUpper_French)