| Index: components/sync/syncable/syncable_id_unittest.cc
|
| diff --git a/components/sync/syncable/syncable_id_unittest.cc b/components/sync/syncable/syncable_id_unittest.cc
|
| index c537db51dbff7b79a575ac6ac853a22111150e48..c29167405e41298445fa72210279cfb19a33dc52 100644
|
| --- a/components/sync/syncable/syncable_id_unittest.cc
|
| +++ b/components/sync/syncable/syncable_id_unittest.cc
|
| @@ -83,12 +83,12 @@ TEST(SyncableIdTest, GetLeastIdForLexicographicComparison) {
|
| }
|
|
|
| TEST(SyncableIdTest, ToValue) {
|
| - base::ExpectStringValue("r", Id::CreateFromServerId("0").ToValue());
|
| - base::ExpectStringValue("svalue", Id::CreateFromServerId("value").ToValue());
|
| + base::ExpectStringValue("r", *Id::CreateFromServerId("0").ToValue());
|
| + base::ExpectStringValue("svalue", *Id::CreateFromServerId("value").ToValue());
|
|
|
| - base::ExpectStringValue("r", Id::CreateFromClientString("0").ToValue());
|
| + base::ExpectStringValue("r", *Id::CreateFromClientString("0").ToValue());
|
| base::ExpectStringValue("cvalue",
|
| - Id::CreateFromClientString("value").ToValue());
|
| + *Id::CreateFromClientString("value").ToValue());
|
| }
|
|
|
| } // namespace syncable
|
|
|