| Index: components/sync_driver/generic_change_processor_unittest.cc
|
| diff --git a/components/sync_driver/generic_change_processor_unittest.cc b/components/sync_driver/generic_change_processor_unittest.cc
|
| index 653251be4758c2ba2b6ed593135c612495963e76..09af1d480a12a86d1959038d3a9649a191686f4d 100644
|
| --- a/components/sync_driver/generic_change_processor_unittest.cc
|
| +++ b/components/sync_driver/generic_change_processor_unittest.cc
|
| @@ -141,8 +141,7 @@ class SyncGenericChangeProcessorTest : public testing::Test {
|
| void BuildChildNodes(int n) {
|
| syncer::WriteTransaction trans(FROM_HERE, user_share());
|
| syncer::ReadNode root(&trans);
|
| - ASSERT_EQ(syncer::BaseNode::INIT_OK,
|
| - root.InitByTagLookup(syncer::ModelTypeToRootTag(kType)));
|
| + ASSERT_EQ(syncer::BaseNode::INIT_OK, root.InitTypeRoot(kType));
|
| for (int i = 0; i < n; ++i) {
|
| syncer::WriteNode node(&trans);
|
| node.InitUniqueByCreation(kType, root, base::StringPrintf("node%05d", i));
|
|
|