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 d9d3cbf977051bdb2e6f44ae9ad2695af5c69af4..ef10ad63984f0f80cc122fa2a8e47b504aa9f7ca 100644 |
--- a/third_party/WebKit/Source/core/editing/EditingCommandTest.cpp |
+++ b/third_party/WebKit/Source/core/editing/EditingCommandTest.cpp |
@@ -64,11 +64,11 @@ TEST_F(EditingCommandTest, CreateCommandFromStringCaseFolding) { |
} |
TEST_F(EditingCommandTest, CreateCommandFromInvalidString) { |
- const String k_invalid_command_name[] = { |
+ const String kInvalidCommandName[] = { |
"", "iNvAlId", "12345", |
}; |
Editor& dummy_editor = GetDocument().GetFrame()->GetEditor(); |
- for (const auto& command_name : k_invalid_command_name) { |
+ for (const auto& command_name : kInvalidCommandName) { |
Editor::Command command = dummy_editor.CreateCommand(command_name); |
EXPECT_EQ(0, command.IdForHistogram()); |
} |