| Index: third_party/WebKit/Source/platform/text/LocaleWinTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/text/LocaleWinTest.cpp b/third_party/WebKit/Source/platform/text/LocaleWinTest.cpp
|
| index 7309b178f9d44bcb2f0a3782edad6c34a9d2c502..a4ebc278068afff3f398db77450945c7d3f6d0b7 100644
|
| --- a/third_party/WebKit/Source/platform/text/LocaleWinTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/text/LocaleWinTest.cpp
|
| @@ -215,7 +215,7 @@ TEST_F(LocaleWinTest, monthFormat)
|
| // Month format for EnglishUS:
|
| // "MMMM, yyyy" on Windows 7 or older.
|
| // "MMMM yyyy" on Window 8 or later.
|
| - EXPECT_STREQ("MMMM yyyy", monthFormat(EnglishUS).replaceWithLiteral(',', "").utf8().data());
|
| + EXPECT_STREQ("MMMM yyyy", monthFormat(EnglishUS).replace(',', "").utf8().data());
|
| EXPECT_STREQ("MMMM yyyy", monthFormat(FrenchFR).utf8().data());
|
| EXPECT_STREQ("yyyy\xE5\xB9\xB4M\xE6\x9C\x88", monthFormat(JapaneseJP).utf8().data());
|
| }
|
|
|