| Index: third_party/WebKit/Source/core/editing/EditingCommandTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/EditingCommandTest.cpp b/third_party/WebKit/Source/core/editing/EditingCommandTest.cpp
|
| index 19e0bfd83b516b5177bae31e172402dd9c443bf4..7df938f7abd89bdb6e7e45300e317f4ad284696c 100644
|
| --- a/third_party/WebKit/Source/core/editing/EditingCommandTest.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/EditingCommandTest.cpp
|
| @@ -57,7 +57,7 @@ TEST_F(EditingCommandTest, CreateCommandFromStringCaseFolding) {
|
| dummy_editor.CreateCommand(String(entry.name).DeprecatedLower());
|
| EXPECT_EQ(static_cast<int>(entry.type), command.IdForHistogram())
|
| << entry.name;
|
| - command = dummy_editor.CreateCommand(String(entry.name).DeprecatedUpper());
|
| + command = dummy_editor.CreateCommand(String(entry.name).UpperASCII());
|
| EXPECT_EQ(static_cast<int>(entry.type), command.IdForHistogram())
|
| << entry.name;
|
| }
|
|
|