Index: chrome/browser/sync/glue/typed_url_model_associator_unittest.cc |
diff --git a/chrome/browser/sync/glue/typed_url_model_associator_unittest.cc b/chrome/browser/sync/glue/typed_url_model_associator_unittest.cc |
index f5d548bce7ed35cfde88f152a030d0bbcf32d4f3..a54cd131b6640804599d3bf82c7120806f6e67a2 100644 |
--- a/chrome/browser/sync/glue/typed_url_model_associator_unittest.cc |
+++ b/chrome/browser/sync/glue/typed_url_model_associator_unittest.cc |
@@ -103,7 +103,7 @@ TEST_F(TypedUrlModelAssociatorTest, MergeUrls) { |
history::URLRow new_row3(GURL("http://pie.com/")); |
std::vector<history::VisitInfo> new_visits3; |
EXPECT_EQ(TypedUrlModelAssociator::DIFF_LOCAL_ROW_CHANGED | |
- TypedUrlModelAssociator::DIFF_LOCAL_TITLE_CHANGED, |
+ TypedUrlModelAssociator::DIFF_NONE, |
TypedUrlModelAssociator::MergeUrls(specs3, row3, &visits3, |
&new_row3, &new_visits3)); |
EXPECT_TRUE(URLsEqual(new_row3, expected3)); |
@@ -122,7 +122,6 @@ TEST_F(TypedUrlModelAssociatorTest, MergeUrls) { |
history::URLRow new_row4(GURL("http://pie.com/")); |
std::vector<history::VisitInfo> new_visits4; |
EXPECT_EQ(TypedUrlModelAssociator::DIFF_UPDATE_NODE | |
- TypedUrlModelAssociator::DIFF_LOCAL_TITLE_CHANGED | |
TypedUrlModelAssociator::DIFF_LOCAL_ROW_CHANGED | |
TypedUrlModelAssociator::DIFF_LOCAL_VISITS_ADDED, |
TypedUrlModelAssociator::MergeUrls(specs4, row4, &visits4, |