| Index: components/autofill/core/browser/credit_card_unittest.cc
|
| diff --git a/components/autofill/core/browser/credit_card_unittest.cc b/components/autofill/core/browser/credit_card_unittest.cc
|
| index 2bbadf46e9d0d7730879237cee240a4b0600023c..b0cff704718213855e0a5837caf5626141864d18 100644
|
| --- a/components/autofill/core/browser/credit_card_unittest.cc
|
| +++ b/components/autofill/core/browser/credit_card_unittest.cc
|
| @@ -447,9 +447,8 @@ TEST(CreditCardTest, SetExpirationMonth) {
|
| EXPECT_EQ(ASCIIToUTF16("04"), card.GetRawInfo(CREDIT_CARD_EXP_MONTH));
|
| EXPECT_EQ(4, card.expiration_month());
|
|
|
| - card.SetInfo(
|
| - AutofillType(CREDIT_CARD_EXP_MONTH), UTF8ToUTF16("F\xc3\x89VRIER"),
|
| - "fr-FR");
|
| + card.SetInfo(AutofillType(CREDIT_CARD_EXP_MONTH),
|
| + UTF8ToUTF16("F\xc3\x89VRIER"), "fr-FR");
|
| EXPECT_EQ(ASCIIToUTF16("02"), card.GetRawInfo(CREDIT_CARD_EXP_MONTH));
|
| EXPECT_EQ(2, card.expiration_month());
|
| }
|
|
|