| Index: components/sync/api/entity_data_unittest.cc
|
| diff --git a/components/sync/api/entity_data_unittest.cc b/components/sync/api/entity_data_unittest.cc
|
| index cf1acb15584ce1db7ee59f85f1b761b2f384b832..5f1592132eb9f2a66634a9a5b626cc4783b31cfe 100644
|
| --- a/components/sync/api/entity_data_unittest.cc
|
| +++ b/components/sync/api/entity_data_unittest.cc
|
| @@ -8,7 +8,7 @@
|
| #include "components/sync/base/unique_position.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -namespace syncer_v2 {
|
| +namespace syncer {
|
|
|
| class EntityDataTest : public testing::Test {
|
| protected:
|
| @@ -20,13 +20,13 @@ TEST_F(EntityDataTest, IsDeleted) {
|
| EntityData data;
|
| EXPECT_TRUE(data.is_deleted());
|
|
|
| - syncer::AddDefaultFieldValue(syncer::BOOKMARKS, &data.specifics);
|
| + AddDefaultFieldValue(BOOKMARKS, &data.specifics);
|
| EXPECT_FALSE(data.is_deleted());
|
| }
|
|
|
| TEST_F(EntityDataTest, Swap) {
|
| EntityData data;
|
| - syncer::AddDefaultFieldValue(syncer::BOOKMARKS, &data.specifics);
|
| + AddDefaultFieldValue(BOOKMARKS, &data.specifics);
|
| data.id = "id";
|
| data.client_tag_hash = "client_tag_hash";
|
| data.non_unique_name = "non_unique_name";
|
| @@ -34,7 +34,6 @@ TEST_F(EntityDataTest, Swap) {
|
| data.modification_time = base::Time::FromTimeT(20);
|
| data.parent_id = "parent_id";
|
|
|
| - using syncer::UniquePosition;
|
| UniquePosition unique_position =
|
| UniquePosition::InitialPosition(UniquePosition::RandomSuffix());
|
|
|
| @@ -62,4 +61,4 @@ TEST_F(EntityDataTest, Swap) {
|
| EXPECT_EQ(base::Time::FromTimeT(20), ptr->modification_time);
|
| }
|
|
|
| -} // namespace syncer_v2
|
| +} // namespace syncer
|
|
|