| Index: components/url_formatter/url_fixer_unittest.cc
|
| diff --git a/components/url_formatter/url_fixer_unittest.cc b/components/url_formatter/url_fixer_unittest.cc
|
| index 01b1c3c04adf67f8635b31ec47575910a681ce60..a425489494e7651b4e710e3b35d1ea586f73de80 100644
|
| --- a/components/url_formatter/url_fixer_unittest.cc
|
| +++ b/components/url_formatter/url_fixer_unittest.cc
|
| @@ -302,8 +302,8 @@ struct FixupCase {
|
| // Semicolon as scheme separator for standard schemes.
|
| {"http;//www.google.com/", "http://www.google.com/"},
|
| {"about;chrome", "chrome://chrome/"},
|
| - // Semicolon left as-is for non-standard schemes.
|
| - {"whatsup;//fool", "whatsup://fool"},
|
| + // Semicolon in non-standard schemes is not replaced by colon.
|
| + {"whatsup;//fool", "http://whatsup%3B//fool"},
|
| // Semicolon left as-is in URL itself.
|
| {"http://host/port?query;moar", "http://host/port?query;moar"},
|
| // Fewer slashes than expected.
|
|
|