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

Unified Diff: third_party/libaddressinput/chromium/chrome_rule_test.cc

Issue 237693002: requestAutocomplete should not unlatinize administrative region names. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments. Created 6 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: third_party/libaddressinput/chromium/chrome_rule_test.cc
diff --git a/third_party/libaddressinput/chromium/chrome_rule_test.cc b/third_party/libaddressinput/chromium/chrome_rule_test.cc
index b56e56b088dc235dc297211445b170418775ea95..064e7da357e91b2e1fd847193c7d71a4f6b43fa0 100644
--- a/third_party/libaddressinput/chromium/chrome_rule_test.cc
+++ b/third_party/libaddressinput/chromium/chrome_rule_test.cc
@@ -51,7 +51,7 @@ TEST(RuleTest, CanonicalizeSubKeyTest) {
const std::string expected_output(base::WideToUTF8(expectations[i].output));
std::string output;
EXPECT_EQ(!expected_output.empty(),
- rule.CanonicalizeSubKey(input, &output))
+ rule.CanonicalizeSubKey(input, true, &output))
<< "Failed for input " << input;
EXPECT_EQ(expected_output, output);
}

Powered by Google App Engine
This is Rietveld 408576698