summaryrefslogtreecommitdiff
path: root/chromium/components/autofill/core/browser/geo/autofill_country_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/autofill/core/browser/geo/autofill_country_unittest.cc')
-rw-r--r--chromium/components/autofill/core/browser/geo/autofill_country_unittest.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/components/autofill/core/browser/geo/autofill_country_unittest.cc b/chromium/components/autofill/core/browser/geo/autofill_country_unittest.cc
index 39892b620ea..5ee6e2dc0ec 100644
--- a/chromium/components/autofill/core/browser/geo/autofill_country_unittest.cc
+++ b/chromium/components/autofill/core/browser/geo/autofill_country_unittest.cc
@@ -23,24 +23,24 @@ namespace autofill {
TEST(AutofillCountryTest, AutofillCountry) {
AutofillCountry united_states_en("US", "en_US");
EXPECT_EQ("US", united_states_en.country_code());
- EXPECT_EQ(ASCIIToUTF16("United States"), united_states_en.name());
+ EXPECT_EQ(u"United States", united_states_en.name());
AutofillCountry united_states_es("US", "es");
EXPECT_EQ("US", united_states_es.country_code());
- EXPECT_EQ(ASCIIToUTF16("Estados Unidos"), united_states_es.name());
+ EXPECT_EQ(u"Estados Unidos", united_states_es.name());
AutofillCountry great_britain_uk_alias("UK", "en_GB");
EXPECT_EQ("GB", great_britain_uk_alias.country_code());
EXPECT_EQ("GB", great_britain_uk_alias.country_code());
- EXPECT_EQ(ASCIIToUTF16("United Kingdom"), great_britain_uk_alias.name());
+ EXPECT_EQ(u"United Kingdom", great_britain_uk_alias.name());
AutofillCountry canada_en("CA", "en_US");
EXPECT_EQ("CA", canada_en.country_code());
- EXPECT_EQ(ASCIIToUTF16("Canada"), canada_en.name());
+ EXPECT_EQ(u"Canada", canada_en.name());
AutofillCountry canada_hu("CA", "hu");
EXPECT_EQ("CA", canada_hu.country_code());
- EXPECT_EQ(ASCIIToUTF16("Kanada"), canada_hu.name());
+ EXPECT_EQ(u"Kanada", canada_hu.name());
}
// Test locale to country code mapping.