| Index: chrome/browser/autofill/password_autofill_manager_unittest.cc
|
| diff --git a/chrome/browser/autofill/password_autofill_manager_unittest.cc b/chrome/browser/autofill/password_autofill_manager_unittest.cc
|
| index 325f31e299941da7aabbee2441e3093b1bc666c8..35ca066dcedfdb7d41e24b191be9403826ccab29 100644
|
| --- a/chrome/browser/autofill/password_autofill_manager_unittest.cc
|
| +++ b/chrome/browser/autofill/password_autofill_manager_unittest.cc
|
| @@ -72,23 +72,3 @@ TEST_F(PasswordAutofillManagerTest, DidAcceptAutofillSuggestion) {
|
| EXPECT_FALSE(password_autofill_manager()->DidAcceptAutofillSuggestion(
|
| username_field(), ASCIIToUTF16(kAliceUsername)));
|
| }
|
| -
|
| -TEST_F(PasswordAutofillManagerTest, DidSelectAutofillSuggestion) {
|
| - EXPECT_TRUE(password_autofill_manager()->DidSelectAutofillSuggestion(
|
| - username_field()));
|
| -
|
| - password_autofill_manager()->Reset();
|
| -
|
| - EXPECT_FALSE(password_autofill_manager()->DidSelectAutofillSuggestion(
|
| - username_field()));
|
| -}
|
| -
|
| -TEST_F(PasswordAutofillManagerTest, DidClearAutofillSelection) {
|
| - EXPECT_TRUE(password_autofill_manager()->DidClearAutofillSelection(
|
| - username_field()));
|
| -
|
| - password_autofill_manager()->Reset();
|
| -
|
| - EXPECT_FALSE(password_autofill_manager()->DidClearAutofillSelection(
|
| - username_field()));
|
| -}
|
|
|