| Index: components/password_manager/core/common/credential_manager_types_unittest.cc
|
| diff --git a/components/password_manager/core/common/credential_manager_types_unittest.cc b/components/password_manager/core/common/credential_manager_types_unittest.cc
|
| index e1744b555a0b92fa330499b92a4d328cb72cc694..167b41dc06396c1c1690a0d2fc288e434e8f0159 100644
|
| --- a/components/password_manager/core/common/credential_manager_types_unittest.cc
|
| +++ b/components/password_manager/core/common/credential_manager_types_unittest.cc
|
| @@ -81,7 +81,7 @@ TEST_F(CredentialManagerTypesTest, CreatePasswordFormLocal) {
|
|
|
| // Local credentials have empty federation_origins, non-empty passwords, and
|
| // a signon realm that matches the origin.
|
| - EXPECT_TRUE(form->federation_origin.unique());
|
| + EXPECT_TRUE(form->federation_origin.opaque());
|
| EXPECT_EQ(info.password, form->password_value);
|
| EXPECT_EQ(origin_.spec(), form->signon_realm);
|
| }
|
| @@ -95,7 +95,7 @@ TEST_F(CredentialManagerTypesTest, CreateObservedPasswordForm) {
|
| EXPECT_EQ(base::string16(), form->display_name);
|
| EXPECT_EQ(origin_, form->origin);
|
| EXPECT_EQ(autofill::PasswordForm::SCHEME_HTML, form->scheme);
|
| - EXPECT_TRUE(form->federation_origin.unique());
|
| + EXPECT_TRUE(form->federation_origin.opaque());
|
| EXPECT_EQ(base::string16(), form->password_value);
|
| EXPECT_EQ(origin_.spec(), form->signon_realm);
|
| }
|
|
|