Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Unified Diff: third_party/WebKit/Source/core/editing/EditingCommandTest.cpp

Issue 2812643002: Fix names of local constants after blink rename. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());
}

Powered by Google App Engine
This is Rietveld 408576698