| Index: chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| diff --git a/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc b/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| index 6a57316e5523fc43be0074c8928b69e919297351..5706b58a0b638795c516a2103af7cac5623983e4 100644
|
| --- a/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| +++ b/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| @@ -240,6 +240,7 @@ TEST_F(SyncableFileOperationRunnerTest, CopyAndMove) {
|
| ResetCallbackStatus();
|
| file_system_.operation_runner()->Copy(
|
| URL(kDir), URL("dest-copy"),
|
| + fileapi::FileSystemOperationRunner::CopyProgressCallback(),
|
| ExpectStatus(FROM_HERE, base::PLATFORM_FILE_OK));
|
| file_system_.operation_runner()->Move(
|
| URL(kDir), URL("dest-move"),
|
| @@ -260,6 +261,7 @@ TEST_F(SyncableFileOperationRunnerTest, CopyAndMove) {
|
| ResetCallbackStatus();
|
| file_system_.operation_runner()->Copy(
|
| URL(kDir), URL("dest-copy2"),
|
| + fileapi::FileSystemOperationRunner::CopyProgressCallback(),
|
| ExpectStatus(FROM_HERE, base::PLATFORM_FILE_OK));
|
| base::MessageLoop::current()->RunUntilIdle();
|
| EXPECT_EQ(0, callback_count_);
|
|
|