| Index: chrome/browser/sync_file_system/drive_file_sync_service_unittest.cc
|
| diff --git a/chrome/browser/sync_file_system/drive_file_sync_service_unittest.cc b/chrome/browser/sync_file_system/drive_file_sync_service_unittest.cc
|
| index 289823e284ed7e096a24de18a99d43de9e5b83b3..9776776aa45f6c56f169b2e582a4cb32d663f0d0 100644
|
| --- a/chrome/browser/sync_file_system/drive_file_sync_service_unittest.cc
|
| +++ b/chrome/browser/sync_file_system/drive_file_sync_service_unittest.cc
|
| @@ -36,6 +36,7 @@
|
| using ::testing::AnyNumber;
|
| using ::testing::AtLeast;
|
| using ::testing::InSequence;
|
| +using ::testing::Sequence;
|
| using ::testing::StrictMock;
|
| using ::testing::_;
|
|
|
| @@ -575,8 +576,11 @@ TEST_F(DriveFileSyncServiceTest, BatchSyncOnInitialization) {
|
| metadata_store()->AddBatchSyncOrigin(kOrigin2, kDirectoryResourceId2);
|
| metadata_store()->MoveBatchSyncOriginToIncremental(kOrigin2);
|
|
|
| + Sequence change_queue_seq;
|
| + EXPECT_CALL(*mock_remote_observer(), OnRemoteChangeQueueUpdated(0))
|
| + .InSequence(change_queue_seq);
|
| EXPECT_CALL(*mock_remote_observer(), OnRemoteChangeQueueUpdated(3))
|
| - .Times(AnyNumber());
|
| + .InSequence(change_queue_seq);
|
|
|
| InSequence sequence;
|
|
|
|
|