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:
committed by
Aaron van Geffen
parent
bf1fd997d0
commit
71a2cb46d2
@@ -126,7 +126,7 @@ TEST_F(StringTest, ToUpper_Basic)
|
||||
}
|
||||
TEST_F(StringTest, ToUpper_Dutch)
|
||||
{
|
||||
auto actual = String::ToUpper(u8"fijntjes puffend fietsen");
|
||||
auto actual = String::ToUpper(u8"fijntjes puffend fietsen");
|
||||
ASSERT_STREQ(actual.c_str(), u8"FIJNTJES PUFFEND FIETSEN");
|
||||
}
|
||||
TEST_F(StringTest, ToUpper_French)
|
||||
|
||||
Reference in New Issue
Block a user