Index: chrome/test/chromedriver/commands_unittest.cc |
diff --git a/chrome/test/chromedriver/commands_unittest.cc b/chrome/test/chromedriver/commands_unittest.cc |
index e377d2921813e96984c66dfdb749a429170379e8..44571863054bbd1a38e1ca25808019295033843a 100644 |
--- a/chrome/test/chromedriver/commands_unittest.cc |
+++ b/chrome/test/chromedriver/commands_unittest.cc |
@@ -138,6 +138,7 @@ TEST(CommandsTest, ExecuteSessionCommand) { |
base::RunLoop run_loop; |
ExecuteSessionCommand( |
&map, |
+ "cmd", |
cmd, |
false, |
params, |
@@ -176,6 +177,7 @@ TEST(CommandsTest, ExecuteSessionCommandOnNoSuchSession) { |
SessionThreadMap map; |
base::DictionaryValue params; |
ExecuteSessionCommand(&map, |
+ "cmd", |
base::Bind(&ShouldNotBeCalled), |
false, |
params, |
@@ -187,6 +189,7 @@ TEST(CommandsTest, ExecuteSessionCommandOnNoSuchSessionWhenItExpectsOk) { |
SessionThreadMap map; |
base::DictionaryValue params; |
ExecuteSessionCommand(&map, |
+ "cmd", |
base::Bind(&ShouldNotBeCalled), |
true, |
params, |
@@ -217,6 +220,7 @@ TEST(CommandsTest, ExecuteSessionCommandOnJustDeletedSession) { |
base::MessageLoop loop; |
base::RunLoop run_loop; |
ExecuteSessionCommand(&map, |
+ "cmd", |
base::Bind(&ShouldNotBeCalled), |
false, |
base::DictionaryValue(), |