Commit 1b77e3cc authored by Noel Gordon's avatar Noel Gordon Committed by Commit Bot

Fix directory_tree_context_menu.js presubmit warning

122:47 error Missing semicolon
515:52 error Missing semicolon

Bug: 836254
Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation
Change-Id: Id30d0aa122c0a34ac75b921de484ee5d2f376403
Reviewed-on: https://chromium-review.googlesource.com/1056888Reviewed-by: default avatarSasha Morrissey <sashab@chromium.org>
Commit-Queue: Noel Gordon <noel@chromium.org>
Cr-Commit-Position: refs/heads/master@{#558199}
parent 7af3bc79
...@@ -119,7 +119,7 @@ function clickDirectoryTreeContextMenuItem(windowId, path, id) { ...@@ -119,7 +119,7 @@ function clickDirectoryTreeContextMenuItem(windowId, path, id) {
[`[full-path-for-testing="${path}"]`]).then(function() { [`[full-path-for-testing="${path}"]`]).then(function() {
// Right click photos directory. // Right click photos directory.
return remoteCall.callRemoteTestUtil('fakeMouseRightClick', windowId, return remoteCall.callRemoteTestUtil('fakeMouseRightClick', windowId,
[`[full-path-for-testing="${path}"]`]) [`[full-path-for-testing="${path}"]`]);
}).then(function() { }).then(function() {
// Wait for context menu. // Wait for context menu.
return remoteCall.waitForElement(windowId, return remoteCall.waitForElement(windowId,
...@@ -512,5 +512,5 @@ testcase.createDirectoryFromDirectoryTreeWithoutChangingCurrentDirectory = ...@@ -512,5 +512,5 @@ testcase.createDirectoryFromDirectoryTreeWithoutChangingCurrentDirectory =
function() { function() {
testPromise(createDirectoryFromDirectoryTree( testPromise(createDirectoryFromDirectoryTree(
false /* Do not use keyboard shortcut */, false /* Do not use keyboard shortcut */,
false /* Do not change current directory */)) false /* Do not change current directory */));
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment