| Index: chrome/browser/password_manager/native_backend_libsecret_unittest.cc
|
| diff --git a/chrome/browser/password_manager/native_backend_libsecret_unittest.cc b/chrome/browser/password_manager/native_backend_libsecret_unittest.cc
|
| index 603b5457a03de0b402923f2e4b99ba23a62b4019..bead664d2df195892ff8df345ca5e502cb67f31a 100644
|
| --- a/chrome/browser/password_manager/native_backend_libsecret_unittest.cc
|
| +++ b/chrome/browser/password_manager/native_backend_libsecret_unittest.cc
|
| @@ -797,26 +797,6 @@ TEST_F(NativeBackendLibsecretTest, AddDuplicateLogin) {
|
| "chrome-42");
|
| }
|
|
|
| -TEST_F(NativeBackendLibsecretTest, ListLoginsAppends) {
|
| - NativeBackendLibsecret backend(42);
|
| -
|
| - backend.AddLogin(form_google_);
|
| -
|
| - // Send the same request twice with the same list both times.
|
| - ScopedVector<autofill::PasswordForm> form_list;
|
| - backend.GetAutofillableLogins(&form_list);
|
| - backend.GetAutofillableLogins(&form_list);
|
| -
|
| - // Quick check that we got two results back.
|
| - EXPECT_EQ(2u, form_list.size());
|
| - form_list.clear();
|
| -
|
| - EXPECT_EQ(1u, global_mock_libsecret_items.size());
|
| - if (global_mock_libsecret_items.size() > 0)
|
| - CheckMockSecretItem(global_mock_libsecret_items[0], form_google_,
|
| - "chrome-42");
|
| -}
|
| -
|
| TEST_F(NativeBackendLibsecretTest, AndroidCredentials) {
|
| NativeBackendLibsecret backend(42);
|
| backend.Init();
|
| @@ -839,7 +819,6 @@ TEST_F(NativeBackendLibsecretTest, AndroidCredentials) {
|
| EXPECT_EQ(saved_android_form, *form_list[0]);
|
| }
|
|
|
| -
|
| TEST_F(NativeBackendLibsecretTest, RemoveLoginsCreatedBetween) {
|
| CheckRemoveLoginsBetween(CREATED);
|
| }
|
|
|