Index: content/browser/fileapi/copy_or_move_operation_delegate_unittest.cc |
diff --git a/content/browser/fileapi/copy_or_move_operation_delegate_unittest.cc b/content/browser/fileapi/copy_or_move_operation_delegate_unittest.cc |
index 055b8f2c97f7e96201205f9049cf280cd6dac9cb..6e2fcca758c9b74bccd9e81c3d6be5ff02a40f44 100644 |
--- a/content/browser/fileapi/copy_or_move_operation_delegate_unittest.cc |
+++ b/content/browser/fileapi/copy_or_move_operation_delegate_unittest.cc |
@@ -619,8 +619,10 @@ TEST(LocalFileSystemCopyOrMoveOperationTest, |
ASSERT_TRUE(helper.DirectoryExists(src)); |
ASSERT_TRUE(helper.DirectoryExists(dest)); |
+ // In the move operation, [file 0, file 2, file 3] are processed as LIFO. |
+ // After file 3 is processed, file 2 is rejected by the validator and the |
+ // operation fails. That is, only file 3 should be in dest. |
FileSystemTestCaseRecord kMoveDirResultCases[] = { |
- {false, FILE_PATH_LITERAL("file 0"), 38}, |
{false, FILE_PATH_LITERAL("file 3"), 0}, |
}; |