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

Unified Diff: components/autofill/core/browser/autofill_metrics_unittest.cc

Issue 2849523003: Add billing address as a mandatory field of Payments credit cards. (Closed)
Patch Set: Added AddressComboboxModel unittests and fixed more compile issues. Created 3 years, 8 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: components/autofill/core/browser/autofill_metrics_unittest.cc
diff --git a/components/autofill/core/browser/autofill_metrics_unittest.cc b/components/autofill/core/browser/autofill_metrics_unittest.cc
index 888adea8308a2a036beef99f62783dc129f060ed..5baccea7e1342797dc8bbc762031a4f6063d865c 100644
--- a/components/autofill/core/browser/autofill_metrics_unittest.cc
+++ b/components/autofill/core/browser/autofill_metrics_unittest.cc
@@ -170,7 +170,7 @@ class TestPersonalDataManager : public PersonalDataManager {
std::unique_ptr<CreditCard> credit_card = base::MakeUnique<CreditCard>(
"10000000-0000-0000-0000-000000000001", std::string());
test::SetCreditCardInfo(credit_card.get(), nullptr, "4111111111111111",
- "12", "24");
+ "12", "24", "1");
local_credit_cards_.push_back(std::move(credit_card));
}
if (include_masked_server_credit_card) {

Powered by Google App Engine
This is Rietveld 408576698