Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6130)

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc

Issue 322453003: autocomplete: support address-line3, address-level{1,2,3} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update autofill_metrics.cc Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
index 30dff1ad446064a77ccc706a63fc31e1f7889143..3b0faf9e153c659f9736c076597af301663bf31f 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
@@ -3151,22 +3151,6 @@ TEST_F(AutofillDialogControllerTest, IconReservedForCreditCardField) {
}
}
-TEST_F(AutofillDialogControllerTest, NoPartiallySupportedCountriesSuggested) {
- SwitchToAutofill();
-
- std::string partially_supported_country = "KR";
- ASSERT_FALSE(i18ninput::CountryIsFullySupported(partially_supported_country));
- ASSERT_FALSE(controller()->MenuModelForSection(SECTION_BILLING));
-
- AutofillProfile verified_profile(test::GetVerifiedProfile());
- verified_profile.SetRawInfo(ADDRESS_HOME_COUNTRY,
- ASCIIToUTF16(partially_supported_country));
- controller()->GetTestingManager()->AddTestingProfile(&verified_profile);
-
- EXPECT_FALSE(
- controller()->SuggestionStateForSection(SECTION_BILLING).visible);
-}
-
TEST_F(AutofillDialogControllerTest, CountryChangeUpdatesSection) {
TestAutofillDialogView* view = controller()->GetView();
view->ClearSectionUpdates();

Powered by Google App Engine
This is Rietveld 408576698