| Index: components/autofill/core/browser/form_field_unittest.cc
|
| diff --git a/components/autofill/core/browser/form_field_unittest.cc b/components/autofill/core/browser/form_field_unittest.cc
|
| index 2fb1a7204c1300ccbeea76a631ff9cc2f49dbe48..763d77631727abdeff0723d1f5d99e2a015dc034 100644
|
| --- a/components/autofill/core/browser/form_field_unittest.cc
|
| +++ b/components/autofill/core/browser/form_field_unittest.cc
|
| @@ -117,7 +117,7 @@ TEST(FormFieldTest, Match) {
|
| EXPECT_FALSE(FormField::Match(&field, ASCIIToUTF16("\\bcon\\b"),
|
| FormField::MATCH_LABEL));
|
| // Make sure the circumflex in 'crepe' is not treated as a word boundary.
|
| - field.label = UTF8ToUTF16("cr" "\xC3\xAA" "pe");
|
| + field.label = base::UTF8ToUTF16("cr" "\xC3\xAA" "pe");
|
| EXPECT_FALSE(FormField::Match(&field, ASCIIToUTF16("\\bcr\\b"),
|
| FormField::MATCH_LABEL));
|
| }
|
|
|