Commit 7b6eac1b authored by Noel Gordon's avatar Noel Gordon Committed by Commit Bot

Integration tests keyboard_operations: use Folder

Consistency: other tests use "Folder" instead of "Directory".

Bug: 836254
Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation
Change-Id: I8870cc25a39a54c6c06d2d5a2560652e854b5e99
Reviewed-on: https://chromium-review.googlesource.com/1056769Reviewed-by: default avatarLuciano Pacheco (SYD) <lucmult@chromium.org>
Commit-Queue: Noel Gordon <noel@chromium.org>
Cr-Commit-Position: refs/heads/master@{#558196}
parent aa8d1e4a
...@@ -164,9 +164,9 @@ WRAPPED_INSTANTIATE_TEST_CASE_P( ...@@ -164,9 +164,9 @@ WRAPPED_INSTANTIATE_TEST_CASE_P(
TestParameter(IN_GUEST_MODE, "renameFileDownloads"), TestParameter(IN_GUEST_MODE, "renameFileDownloads"),
TestParameter(NOT_IN_GUEST_MODE, "renameFileDownloads"), TestParameter(NOT_IN_GUEST_MODE, "renameFileDownloads"),
TestParameter(NOT_IN_GUEST_MODE, "renameFileDrive"), TestParameter(NOT_IN_GUEST_MODE, "renameFileDrive"),
TestParameter(IN_GUEST_MODE, "renameNewDirectoryDownloads"), TestParameter(IN_GUEST_MODE, "renameNewFolderDownloads"),
TestParameter(NOT_IN_GUEST_MODE, "renameNewDirectoryDownloads"), TestParameter(NOT_IN_GUEST_MODE, "renameNewFolderDownloads"),
TestParameter(NOT_IN_GUEST_MODE, "renameNewDirectoryDrive"))); TestParameter(NOT_IN_GUEST_MODE, "renameNewFolderDrive")));
WRAPPED_INSTANTIATE_TEST_CASE_P( WRAPPED_INSTANTIATE_TEST_CASE_P(
Delete, Delete,
......
...@@ -356,12 +356,12 @@ testcase.renameFileDrive = function() { ...@@ -356,12 +356,12 @@ testcase.renameFileDrive = function() {
testPromise(testRenameFile(RootPath.DRIVE, BASIC_DRIVE_ENTRY_SET)); testPromise(testRenameFile(RootPath.DRIVE, BASIC_DRIVE_ENTRY_SET));
}; };
testcase.renameNewDirectoryDownloads = function() { testcase.renameNewFolderDownloads = function() {
testPromise(testRenameNewDirectory(RootPath.DOWNLOADS, testPromise(testRenameNewDirectory(RootPath.DOWNLOADS,
BASIC_LOCAL_ENTRY_SET, '/Downloads')); BASIC_LOCAL_ENTRY_SET, '/Downloads'));
}; };
testcase.renameNewDirectoryDrive = function() { testcase.renameNewFolderDrive = function() {
testPromise(testRenameNewDirectory(RootPath.DRIVE, BASIC_DRIVE_ENTRY_SET, testPromise(testRenameNewDirectory(RootPath.DRIVE, BASIC_DRIVE_ENTRY_SET,
'/My Drive')); '/My Drive'));
}; };
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