| Index: components/password_manager/core/browser/password_syncable_service_unittest.cc
|
| diff --git a/components/password_manager/core/browser/password_syncable_service_unittest.cc b/components/password_manager/core/browser/password_syncable_service_unittest.cc
|
| index dcad2124aab26d565814f70d4fb6d518562ccd2f..1b66fdea12066a35cc992f7c5c6c0b42ef9c852e 100644
|
| --- a/components/password_manager/core/browser/password_syncable_service_unittest.cc
|
| +++ b/components/password_manager/core/browser/password_syncable_service_unittest.cc
|
| @@ -135,7 +135,7 @@ SyncData CreateSyncData(const std::string& signon_realm) {
|
| password_specifics->set_times_used(3);
|
| password_specifics->set_display_name("Mr. X");
|
| password_specifics->set_avatar_url("https://accounts.google.com/Icon");
|
| - password_specifics->set_federation_url("https://google.com/federation");
|
| + password_specifics->set_federation_url("https://google.com");
|
| password_specifics->set_username_value("kingkong");
|
| password_specifics->set_password_value("sicrit");
|
|
|
| @@ -282,7 +282,7 @@ TEST_F(PasswordSyncableServiceTest, AdditionOnlyInPasswordStore) {
|
| form.type = kArbitraryType;
|
| form.display_name = base::ASCIIToUTF16(kDisplayName);
|
| form.icon_url = GURL(kIconUrl);
|
| - form.federation_url = GURL(kFederationUrl);
|
| + form.federation_origin = url::Origin(GURL(kFederationUrl));
|
| form.username_value = base::ASCIIToUTF16(kUsername);
|
| form.password_value = base::ASCIIToUTF16(kPassword);
|
| EXPECT_CALL(*password_store(), FillAutofillableLogins(_))
|
| @@ -416,7 +416,7 @@ TEST_F(PasswordSyncableServiceTest, GetAllSyncData) {
|
| form1.type = kArbitraryType;
|
| form1.display_name = base::ASCIIToUTF16(kDisplayName);
|
| form1.icon_url = GURL(kIconUrl);
|
| - form1.federation_url = GURL(kFederationUrl);
|
| + form1.federation_origin = url::Origin(GURL(kFederationUrl));
|
| form1.username_value = base::ASCIIToUTF16(kUsername);
|
| form1.password_value = base::ASCIIToUTF16(kPassword);
|
| autofill::PasswordForm form2;
|
|
|