summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/syncable/syncable_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/sync/syncable/syncable_unittest.cc')
-rw-r--r--chrome/browser/sync/syncable/syncable_unittest.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/sync/syncable/syncable_unittest.cc b/chrome/browser/sync/syncable/syncable_unittest.cc
index 3d514e0e..dd555c6 100644
--- a/chrome/browser/sync/syncable/syncable_unittest.cc
+++ b/chrome/browser/sync/syncable/syncable_unittest.cc
@@ -833,19 +833,19 @@ TEST_F(SyncableDirectoryTest, TestCaseChangeRename) {
}
TEST_F(SyncableDirectoryTest, TestShareInfo) {
- dir_->set_last_sync_timestamp(100);
+ dir_->set_last_download_timestamp(100);
dir_->set_store_birthday("Jan 31st");
{
ReadTransaction trans(dir_.get(), __FILE__, __LINE__);
- EXPECT_EQ(100, dir_->last_sync_timestamp());
+ EXPECT_EQ(100, dir_->last_download_timestamp());
EXPECT_EQ("Jan 31st", dir_->store_birthday());
}
- dir_->set_last_sync_timestamp(200);
+ dir_->set_last_download_timestamp(200);
dir_->set_store_birthday("April 10th");
dir_->SaveChanges();
{
ReadTransaction trans(dir_.get(), __FILE__, __LINE__);
- EXPECT_EQ(200, dir_->last_sync_timestamp());
+ EXPECT_EQ(200, dir_->last_download_timestamp());
EXPECT_EQ("April 10th", dir_->store_birthday());
}
}