| Index: components/autofill/core/browser/autofill_test_utils.cc
|
| diff --git a/components/autofill/core/browser/autofill_test_utils.cc b/components/autofill/core/browser/autofill_test_utils.cc
|
| index 78b1f0e09edf86d11bcee070a4e641dfb01d8dd3..10a23dcb2c605ed7540089141768db7e217f39c9 100644
|
| --- a/components/autofill/core/browser/autofill_test_utils.cc
|
| +++ b/components/autofill/core/browser/autofill_test_utils.cc
|
| @@ -226,15 +226,15 @@ AutofillProfile GetVerifiedProfile2() {
|
|
|
| CreditCard GetCreditCard() {
|
| CreditCard credit_card(base::GenerateGUID(), "http://www.example.com");
|
| - SetCreditCardInfo(
|
| - &credit_card, "Test User", "4111111111111111" /* Visa */, "11", "2017");
|
| + SetCreditCardInfo(&credit_card, "Test User", "4111111111111111" /* Visa */,
|
| + "11", "2022");
|
| return credit_card;
|
| }
|
|
|
| CreditCard GetCreditCard2() {
|
| CreditCard credit_card(base::GenerateGUID(), "https://www.example.com");
|
| - SetCreditCardInfo(
|
| - &credit_card, "Someone Else", "378282246310005" /* AmEx */, "07", "2019");
|
| + SetCreditCardInfo(&credit_card, "Someone Else", "378282246310005" /* AmEx */,
|
| + "07", "2022");
|
| return credit_card;
|
| }
|
|
|
| @@ -253,7 +253,7 @@ CreditCard GetVerifiedCreditCard2() {
|
| CreditCard GetMaskedServerCard() {
|
| CreditCard credit_card(CreditCard::MASKED_SERVER_CARD, "a123");
|
| test::SetCreditCardInfo(&credit_card, "Bonnie Parker",
|
| - "2109" /* Mastercard */, "12", "2012");
|
| + "2109" /* Mastercard */, "12", "2020");
|
| credit_card.SetTypeForMaskedCard(kMasterCard);
|
| return credit_card;
|
| }
|
|
|